home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / gcc-263 / cp / parse.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-17  |  332.7 KB  |  7,645 lines

  1.  
  2. /*  A Bison parser, made from parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    IF    268
  18. #define    ELSE    269
  19. #define    WHILE    270
  20. #define    DO    271
  21. #define    FOR    272
  22. #define    SWITCH    273
  23. #define    CASE    274
  24. #define    DEFAULT    275
  25. #define    BREAK    276
  26. #define    CONTINUE    277
  27. #define    RETURN    278
  28. #define    GOTO    279
  29. #define    ASM_KEYWORD    280
  30. #define    GCC_ASM_KEYWORD    281
  31. #define    TYPEOF    282
  32. #define    ALIGNOF    283
  33. #define    HEADOF    284
  34. #define    CLASSOF    285
  35. #define    SIGOF    286
  36. #define    ATTRIBUTE    287
  37. #define    EXTENSION    288
  38. #define    LABEL    289
  39. #define    AGGR    290
  40. #define    VISSPEC    291
  41. #define    DELETE    292
  42. #define    NEW    293
  43. #define    OVERLOAD    294
  44. #define    THIS    295
  45. #define    OPERATOR    296
  46. #define    CXX_TRUE    297
  47. #define    CXX_FALSE    298
  48. #define    LEFT_RIGHT    299
  49. #define    TEMPLATE    300
  50. #define    TYPEID    301
  51. #define    DYNAMIC_CAST    302
  52. #define    STATIC_CAST    303
  53. #define    REINTERPRET_CAST    304
  54. #define    CONST_CAST    305
  55. #define    SCOPE    306
  56. #define    EMPTY    307
  57. #define    PTYPENAME    308
  58. #define    ASSIGN    309
  59. #define    OROR    310
  60. #define    ANDAND    311
  61. #define    MIN_MAX    312
  62. #define    EQCOMPARE    313
  63. #define    ARITHCOMPARE    314
  64. #define    LSHIFT    315
  65. #define    RSHIFT    316
  66. #define    POINTSAT_STAR    317
  67. #define    DOT_STAR    318
  68. #define    UNARY    319
  69. #define    PLUSPLUS    320
  70. #define    MINUSMINUS    321
  71. #define    HYPERUNARY    322
  72. #define    PAREN_STAR_PAREN    323
  73. #define    POINTSAT    324
  74. #define    TRY    325
  75. #define    CATCH    326
  76. #define    THROW    327
  77. #define    TYPENAME_ELLIPSIS    328
  78. #define    PRE_PARSED_FUNCTION_DECL    329
  79. #define    EXTERN_LANG_STRING    330
  80. #define    ALL    331
  81. #define    PRE_PARSED_CLASS_DECL    332
  82. #define    TYPENAME_DEFN    333
  83. #define    IDENTIFIER_DEFN    334
  84. #define    PTYPENAME_DEFN    335
  85. #define    END_OF_SAVED_INPUT    336
  86.  
  87. #line 42 "parse.y"
  88.  
  89. /* Cause the `yydebug' variable to be defined.  */
  90. #define YYDEBUG 1
  91.  
  92. #include "config.h"
  93.  
  94. #include <stdio.h>
  95. #include <errno.h>
  96.  
  97. #include "tree.h"
  98. #include "input.h"
  99. #include "flags.h"
  100. #include "lex.h"
  101. #include "cp-tree.h"
  102.  
  103. /* Since parsers are distinct for each language, put the language string
  104.    definition here.  (fnf) */
  105. char *language_string = "GNU C++";
  106.  
  107. extern tree void_list_node;
  108. extern struct obstack permanent_obstack;
  109.  
  110. #ifndef errno
  111. extern int errno;
  112. #endif
  113.  
  114. extern int end_of_file;
  115. extern int current_class_depth;
  116.  
  117. void yyerror ();
  118.  
  119. /* Like YYERROR but do call yyerror.  */
  120. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  121.  
  122. #define OP0(NODE) (TREE_OPERAND (NODE, 0))
  123. #define OP1(NODE) (TREE_OPERAND (NODE, 1))
  124.  
  125. /* Contains the statement keyword (if/while/do) to include in an
  126.    error message if the user supplies an empty conditional expression.  */
  127. static char *cond_stmt_keyword;
  128.  
  129. /* Nonzero if we have an `extern "C"' acting as an extern specifier.  */
  130. int have_extern_spec;
  131. int used_extern_spec;
  132.  
  133. void yyhook ();
  134.  
  135. /* Cons up an empty parameter list.  */
  136. #ifdef __GNUC__
  137. __inline
  138. #endif
  139. static tree
  140. empty_parms ()
  141. {
  142.   tree parms;
  143.  
  144.   if (strict_prototype)
  145.     parms = void_list_node;
  146.   else
  147.     parms = NULL_TREE;
  148.   return parms;
  149. }
  150.  
  151. #line 108 "parse.y"
  152. typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
  153. #line 277 "parse.y"
  154.  
  155. /* List of types and structure classes of the current declaration.  */
  156. static tree current_declspecs;
  157.  
  158. /* When defining an aggregate, this is the most recent one being defined.  */
  159. static tree current_aggr;
  160.  
  161. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  162.  
  163. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  164. extern void yyprint ();
  165. extern tree combine_strings        PROTO((tree));
  166.  
  167. #ifndef YYLTYPE
  168. typedef
  169.   struct yyltype
  170.     {
  171.       int timestamp;
  172.       int first_line;
  173.       int first_column;
  174.       int last_line;
  175.       int last_column;
  176.       char *text;
  177.    }
  178.   yyltype;
  179.  
  180. #define YYLTYPE yyltype
  181. #endif
  182.  
  183. #include <stdio.h>
  184.  
  185. #ifndef __cplusplus
  186. #ifndef __STDC__
  187. #define const
  188. #endif
  189. #endif
  190.  
  191.  
  192.  
  193. #define    YYFINAL        1350
  194. #define    YYFLAG        -32768
  195. #define    YYNTBASE    106
  196.  
  197. #define YYTRANSLATE(x) ((unsigned)(x) <= 336 ? yytranslate[x] : 338)
  198.  
  199. static const char yytranslate[] = {     0,
  200.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  201.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  202.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  203.      2,     2,   104,     2,     2,     2,    77,    65,     2,    88,
  204.    102,    75,    73,    55,    74,    87,    76,     2,     2,     2,
  205.      2,     2,     2,     2,     2,     2,     2,    60,    56,    69,
  206.     58,    70,    59,     2,     2,     2,     2,     2,     2,     2,
  207.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  208.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  209.     89,     2,   105,    64,     2,     2,     2,     2,     2,     2,
  210.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  211.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  212.      2,     2,    54,    63,   103,    83,     2,     2,     2,     2,
  213.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  214.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  215.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  216.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  217.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  218.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  221.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  222.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  223.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  224.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  225.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  226.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  227.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  228.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  229.     36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  230.     46,    47,    48,    49,    50,    51,    52,    53,    57,    61,
  231.     62,    66,    67,    68,    71,    72,    78,    79,    80,    81,
  232.     82,    84,    85,    86,    90,    91,    92,    93,    94,    95,
  233.     96,    97,    98,    99,   100,   101
  234. };
  235.  
  236. #if YYDEBUG != 0
  237. static const short yyprhs[] = {     0,
  238.      0,     1,     3,     4,     7,    10,    11,    12,    14,    16,
  239.     17,    20,    22,    24,    26,    28,    34,    39,    43,    48,
  240.     53,    55,    56,    62,    64,    68,    70,    73,    75,    79,
  241.     81,    85,    87,    91,    92,    98,    99,   105,   106,   112,
  242.    113,   119,   123,   127,   134,   142,   147,   151,   155,   157,
  243.    159,   161,   163,   165,   168,   172,   176,   180,   184,   187,
  244.    190,   193,   196,   199,   201,   205,   210,   214,   220,   225,
  245.    229,   233,   236,   240,   244,   247,   249,   256,   261,   265,
  246.    269,   272,   275,   277,   281,   286,   289,   293,   294,   295,
  247.    297,   301,   304,   308,   310,   315,   318,   323,   326,   331,
  248.    334,   336,   338,   340,   342,   344,   346,   348,   350,   354,
  249.    358,   363,   368,   372,   377,   381,   386,   387,   389,   393,
  250.    395,   397,   398,   405,   406,   408,   409,   412,   414,   416,
  251.    418,   420,   422,   424,   426,   428,   432,   434,   438,   439,
  252.    441,   443,   444,   453,   455,   458,   463,   468,   470,   474,
  253.    478,   482,   486,   488,   490,   492,   493,   497,   500,   503,
  254.    506,   509,   512,   515,   520,   523,   528,   531,   535,   539,
  255.    544,   549,   555,   561,   568,   571,   576,   582,   586,   590,
  256.    594,   596,   600,   603,   607,   612,   614,   617,   623,   625,
  257.    630,   635,   640,   642,   646,   650,   654,   658,   662,   666,
  258.    670,   674,   678,   682,   686,   690,   694,   698,   702,   706,
  259.    710,   714,   718,   724,   728,   732,   734,   737,   741,   743,
  260.    745,   747,   749,   751,   753,   755,   758,   761,   763,   765,
  261.    767,   769,   771,   773,   775,   779,   783,   784,   789,   790,
  262.    797,   800,   805,   808,   811,   813,   818,   820,   828,   836,
  263.    844,   852,   857,   862,   865,   868,   870,   875,   878,   881,
  264.    884,   890,   894,   900,   904,   909,   916,   918,   921,   923,
  265.    926,   928,   930,   932,   935,   936,   939,   942,   946,   950,
  266.    954,   958,   962,   965,   968,   970,   972,   974,   977,   980,
  267.    983,   986,   988,   990,   992,   994,   997,  1000,  1004,  1008,
  268.   1013,  1015,  1018,  1021,  1023,  1025,  1028,  1031,  1033,  1036,
  269.   1039,  1043,  1045,  1048,  1050,  1052,  1054,  1059,  1064,  1069,
  270.   1074,  1076,  1078,  1080,  1082,  1086,  1088,  1092,  1094,  1098,
  271.   1099,  1104,  1105,  1113,  1118,  1119,  1127,  1132,  1133,  1141,
  272.   1146,  1147,  1155,  1160,  1161,  1163,  1165,  1168,  1175,  1177,
  273.   1181,  1182,  1184,  1189,  1196,  1201,  1203,  1205,  1207,  1209,
  274.   1211,  1215,  1217,  1220,  1224,  1229,  1231,  1233,  1237,  1242,
  275.   1249,  1253,  1259,  1260,  1268,  1273,  1274,  1281,  1285,  1288,
  276.   1291,  1296,  1298,  1299,  1301,  1302,  1304,  1306,  1309,  1312,
  277.   1315,  1318,  1322,  1325,  1328,  1331,  1335,  1339,  1341,  1344,
  278.   1345,  1346,  1350,  1354,  1357,  1359,  1361,  1362,  1364,  1367,
  279.   1369,  1373,  1375,  1378,  1380,  1385,  1390,  1392,  1394,  1397,
  280.   1400,  1402,  1403,  1405,  1410,  1414,  1416,  1419,  1422,  1425,
  281.   1428,  1431,  1434,  1437,  1440,  1445,  1448,  1450,  1456,  1460,
  282.   1461,  1463,  1467,  1468,  1470,  1474,  1476,  1478,  1480,  1482,
  283.   1487,  1494,  1499,  1504,  1511,  1516,  1520,  1525,  1532,  1537,
  284.   1542,  1549,  1554,  1558,  1560,  1564,  1566,  1570,  1573,  1575,
  285.   1582,  1583,  1586,  1588,  1591,  1592,  1595,  1599,  1603,  1606,
  286.   1609,  1613,  1615,  1617,  1619,  1622,  1628,  1634,  1638,  1644,
  287.   1649,  1653,  1657,  1660,  1662,  1666,  1670,  1673,  1676,  1680,
  288.   1682,  1686,  1690,  1693,  1696,  1700,  1702,  1708,  1714,  1718,
  289.   1724,  1728,  1732,  1737,  1741,  1744,  1747,  1749,  1752,  1757,
  290.   1762,  1765,  1767,  1769,  1771,  1774,  1777,  1780,  1782,  1785,
  291.   1787,  1790,  1793,  1797,  1799,  1803,  1806,  1810,  1813,  1816,
  292.   1820,  1822,  1826,  1831,  1835,  1838,  1841,  1843,  1847,  1850,
  293.   1853,  1855,  1858,  1862,  1864,  1868,  1870,  1876,  1880,  1885,
  294.   1889,  1894,  1897,  1900,  1904,  1907,  1909,  1911,  1914,  1917,
  295.   1920,  1921,  1922,  1924,  1926,  1929,  1933,  1935,  1938,  1942,
  296.   1948,  1955,  1961,  1962,  1963,  1970,  1972,  1975,  1977,  1979,
  297.   1981,  1984,  1985,  1990,  1992,  1993,  1994,  2001,  2002,  2003,
  298.   2011,  2012,  2013,  2014,  2025,  2026,  2027,  2028,  2039,  2040,
  299.   2048,  2049,  2055,  2056,  2064,  2065,  2070,  2073,  2076,  2079,
  300.   2083,  2090,  2099,  2110,  2123,  2128,  2132,  2135,  2138,  2140,
  301.   2142,  2143,  2144,  2152,  2154,  2157,  2160,  2161,  2162,  2168,
  302.   2170,  2172,  2176,  2180,  2183,  2186,  2189,  2193,  2198,  2203,
  303.   2207,  2212,  2219,  2226,  2227,  2229,  2230,  2232,  2234,  2235,
  304.   2237,  2239,  2243,  2248,  2250,  2254,  2255,  2257,  2259,  2261,
  305.   2264,  2267,  2270,  2272,  2274,  2277,  2280,  2283,  2286,  2288,
  306.   2292,  2295,  2298,  2303,  2306,  2309,  2312,  2315,  2318,  2321,
  307.   2323,  2326,  2328,  2332,  2334,  2336,  2337,  2338,  2340,  2341,
  308.   2346,  2348,  2350,  2354,  2355,  2359,  2363,  2367,  2369,  2372,
  309.   2375,  2378,  2381,  2384,  2387,  2390,  2393,  2396,  2399,  2402,
  310.   2405,  2408,  2411,  2414,  2417,  2420,  2423,  2426,  2429,  2432,
  311.   2435,  2438,  2442,  2445,  2448,  2451,  2454,  2458,  2461,  2464,
  312.   2469,  2474,  2478
  313. };
  314.  
  315. static const short yyrhs[] = {    -1,
  316.    107,     0,     0,   108,   112,     0,   107,   112,     0,     0,
  317.      0,    25,     0,    26,     0,     0,   113,   114,     0,   130,
  318.      0,   129,     0,   123,     0,   121,     0,   111,    88,   180,
  319.    102,    56,     0,   115,    54,   107,   103,     0,   115,    54,
  320.    103,     0,   115,   109,   130,   110,     0,   115,   109,   129,
  321.    110,     0,    95,     0,     0,    45,    69,   117,   118,    70,
  322.      0,   120,     0,   118,    55,   120,     0,   221,     0,   221,
  323.    139,     0,   119,     0,   119,    58,   193,     0,   328,     0,
  324.     39,   122,    56,     0,     3,     0,   122,    55,     3,     0,
  325.      0,   116,   223,    54,   124,    56,     0,     0,   116,   224,
  326.     54,   125,    56,     0,     0,   116,   223,    60,   126,    56,
  327.      0,     0,   116,   224,    60,   127,    56,     0,   116,   223,
  328.     56,     0,   116,   224,    56,     0,   116,   259,   332,   198,
  329.    207,   128,     0,   116,   187,   184,   332,   198,   207,   128,
  330.      0,   116,   190,   259,   128,     0,   116,     1,   103,     0,
  331.    116,     1,    56,     0,    54,     0,    60,     0,    56,     0,
  332.     58,     0,    23,     0,   197,    56,     0,   190,   196,    56,
  333.      0,   190,   259,    56,     0,   187,   195,    56,     0,   187,
  334.    184,    56,     0,   190,    56,     0,   142,    56,     0,   187,
  335.     56,     0,     1,    56,     0,     1,   103,     0,    56,     0,
  336.    131,   135,   283,     0,   131,   134,   135,   283,     0,   131,
  337.    181,   283,     0,   131,   134,    56,   181,   283,     0,   131,
  338.    134,   181,   283,     0,   187,   184,     1,     0,   190,   259,
  339.      1,     0,   259,     1,     0,   187,   184,   332,     0,   190,
  340.    259,   332,     0,   259,   332,     0,    94,     0,   187,    88,
  341.    323,   102,   251,   332,     0,   187,    44,   251,   332,     0,
  342.    187,   184,   332,     0,   190,   259,   332,     0,   259,   332,
  343.      0,    23,     3,     0,   133,     0,   133,    58,   214,     0,
  344.    133,    88,   161,   102,     0,   133,    44,     0,    60,   136,
  345.    137,     0,     0,     0,   138,     0,   137,    55,   138,     0,
  346.    137,     1,     0,    88,   161,   102,     0,    44,     0,   140,
  347.     88,   161,   102,     0,   140,    44,     0,   269,    88,   161,
  348.    102,     0,   269,    44,     0,   263,    88,   161,   102,     0,
  349.    263,    44,     0,     3,     0,     4,     0,    53,     0,     3,
  350.      0,    53,     0,    99,     0,    98,     0,   100,     0,    45,
  351.    222,   150,     0,    45,   187,   184,     0,     5,    45,   222,
  352.    150,     0,     5,    45,   187,   184,     0,   144,   145,   150,
  353.      0,    53,    69,   146,    70,     0,    53,    69,    70,     0,
  354.      4,    69,   146,    70,     0,     0,   147,     0,   146,    55,
  355.    147,     0,   186,     0,   169,     0,     0,    97,   230,   149,
  356.    235,   236,   103,     0,     0,   148,     0,     0,   148,   151,
  357.      0,    74,     0,    73,     0,    81,     0,    82,     0,   104,
  358.      0,   160,     0,   169,     0,    44,     0,    88,   153,   102,
  359.      0,    44,     0,    88,   157,   102,     0,     0,   157,     0,
  360.      1,     0,     0,   312,   184,   332,   198,   207,    58,   158,
  361.    214,     0,   153,     0,    54,   103,     0,    54,   280,   277,
  362.    103,     0,    54,   280,     1,   103,     0,   290,     0,   169,
  363.     55,   169,     0,   169,    55,     1,     0,   160,    55,   169,
  364.      0,   160,    55,     1,     0,   169,     0,   160,     0,   174,
  365.      0,     0,    33,   163,   167,     0,    75,   167,     0,    65,
  366.    167,     0,    83,   167,     0,   152,   167,     0,    62,   139,
  367.      0,    11,   162,     0,    11,    88,   186,   102,     0,    28,
  368.    162,     0,    28,    88,   186,   102,     0,   177,   250,     0,
  369.    177,   250,   165,     0,   177,   164,   250,     0,   177,   164,
  370.    250,   165,     0,   177,    88,   186,   102,     0,   177,    88,
  371.    186,   102,   165,     0,   177,   164,    88,   186,   102,     0,
  372.    177,   164,    88,   186,   102,   165,     0,   178,   167,     0,
  373.    178,    89,   105,   167,     0,   178,    89,   153,   105,   167,
  374.      0,    88,   161,   102,     0,    54,   161,   103,     0,    88,
  375.    161,   102,     0,    44,     0,    88,   193,   102,     0,    58,
  376.    214,     0,    88,   186,   102,     0,   166,    88,   186,   102,
  377.      0,   168,     0,   166,   168,     0,   166,    54,   215,   219,
  378.    103,     0,   162,     0,    29,    88,   153,   102,     0,    30,
  379.     88,   153,   102,     0,    30,    88,     4,   102,     0,   167,
  380.      0,   169,    78,   169,     0,   169,    79,   169,     0,   169,
  381.     73,   169,     0,   169,    74,   169,     0,   169,    75,   169,
  382.      0,   169,    76,   169,     0,   169,    77,   169,     0,   169,
  383.     71,   169,     0,   169,    72,   169,     0,   169,    68,   169,
  384.      0,   169,    69,   169,     0,   169,    70,   169,     0,   169,
  385.     67,   169,     0,   169,    66,   169,     0,   169,    65,   169,
  386.      0,   169,    63,   169,     0,   169,    64,   169,     0,   169,
  387.     62,   169,     0,   169,    61,   169,     0,   169,    59,   318,
  388.     60,   169,     0,   169,    58,   169,     0,   169,    57,   169,
  389.      0,    92,     0,    92,   169,     0,    83,   330,   139,     0,
  390.    337,     0,     3,     0,    53,     0,   170,     0,     4,     0,
  391.    170,     0,   263,     0,    75,   172,     0,    65,   172,     0,
  392.    261,     0,   170,     0,   263,     0,   170,     0,     8,     0,
  393.    179,     0,   180,     0,    88,   153,   102,     0,    88,     1,
  394.    102,     0,     0,    88,   175,   284,   102,     0,     0,   174,
  395.     88,   161,   102,   176,   151,     0,   174,    44,     0,   174,
  396.     89,   153,   105,     0,   174,    81,     0,   174,    82,     0,
  397.     40,     0,     7,    88,   161,   102,     0,   265,     0,    47,
  398.     69,   186,    70,    88,   153,   102,     0,    48,    69,   186,
  399.     70,    88,   153,   102,     0,    49,    69,   186,    70,    88,
  400.    153,   102,     0,    50,    69,   186,    70,    88,   153,   102,
  401.      0,    46,    88,   153,   102,     0,    46,    88,   186,   102,
  402.      0,   272,     3,     0,   272,   337,     0,   264,     0,   264,
  403.     88,   161,   102,     0,   264,    44,     0,   182,   171,     0,
  404.    182,   262,     0,   182,   171,    88,   161,   102,     0,   182,
  405.    171,    44,     0,   182,   262,    88,   161,   102,     0,   182,
  406.    262,    44,     0,   182,    83,     6,    44,     0,   182,     6,
  407.     51,    83,     6,    44,     0,    38,     0,   272,    38,     0,
  408.     37,     0,   272,   178,     0,    42,     0,    43,     0,     9,
  409.      0,   180,     9,     0,     0,   174,    87,     0,   174,    86,
  410.      0,   193,   184,    56,     0,   187,   184,    56,     0,   193,
  411.    195,    56,     0,   187,   195,    56,     0,   190,   196,    56,
  412.      0,   187,    56,     0,   190,    56,     0,   255,     0,   259,
  413.      0,    44,     0,   185,    44,     0,   191,   275,     0,   252,
  414.    275,     0,   193,   275,     0,   191,     0,   252,     0,   191,
  415.      0,   188,     0,   190,   193,     0,   193,   189,     0,   190,
  416.    193,   189,     0,   190,   193,   192,     0,   190,   193,   192,
  417.    189,     0,     5,     0,   189,   194,     0,   189,     5,     0,
  418.    252,     0,     5,     0,   190,     7,     0,   190,     5,     0,
  419.    193,     0,   252,   193,     0,   193,   192,     0,   252,   193,
  420.    192,     0,   194,     0,   192,   194,     0,   216,     0,     6,
  421.      0,   269,     0,    27,    88,   153,   102,     0,    27,    88,
  422.    186,   102,     0,    31,    88,   153,   102,     0,    31,    88,
  423.    186,   102,     0,     6,     0,     7,     0,   216,     0,   199,
  424.      0,   195,    55,   201,     0,   203,     0,   196,    55,   201,
  425.      0,   205,     0,   197,    55,   201,     0,     0,   111,    88,
  426.    180,   102,     0,     0,   184,   332,   198,   207,    58,   200,
  427.    214,     0,   184,   332,   198,   207,     0,     0,   184,   332,
  428.    198,   207,    58,   202,   214,     0,   184,   332,   198,   207,
  429.      0,     0,   259,   332,   198,   207,    58,   204,   214,     0,
  430.    259,   332,   198,   207,     0,     0,   259,   332,   198,   207,
  431.     58,   206,   214,     0,   259,   332,   198,   207,     0,     0,
  432.    208,     0,   209,     0,   208,   209,     0,    32,    88,    88,
  433.    210,   102,   102,     0,   211,     0,   210,    55,   211,     0,
  434.      0,   212,     0,   212,    88,     3,   102,     0,   212,    88,
  435.      3,    55,   161,   102,     0,   212,    88,   161,   102,     0,
  436.    139,     0,     5,     0,     6,     0,     7,     0,   139,     0,
  437.    213,    55,   139,     0,   169,     0,    54,   103,     0,    54,
  438.    215,   103,     0,    54,   215,    55,   103,     0,     1,     0,
  439.    214,     0,   215,    55,   214,     0,    89,   169,   105,   214,
  440.      0,   215,    55,    19,   169,    60,   214,     0,   139,    60,
  441.    214,     0,   215,    55,   139,    60,   214,     0,     0,    12,
  442.    139,    54,   217,   248,   220,   103,     0,    12,   139,    54,
  443.    103,     0,     0,    12,    54,   218,   248,   220,   103,     0,
  444.     12,    54,   103,     0,    12,   139,     0,    12,   270,     0,
  445.    229,   235,   236,   103,     0,   229,     0,     0,    55,     0,
  446.      0,    55,     0,    35,     0,   221,     5,     0,   221,     6,
  447.      0,   221,     7,     0,   221,    35,     0,   221,   144,    56,
  448.      0,   221,   139,     0,   221,   270,     0,   221,   143,     0,
  449.    221,   144,    54,     0,   221,   144,    60,     0,   222,     0,
  450.    221,   141,     0,     0,     0,   223,   225,   230,     0,   224,
  451.    226,   230,     0,   221,    54,     0,   228,     0,   227,     0,
  452.      0,    60,     0,    60,   231,     0,   232,     0,   231,    55,
  453.    232,     0,   233,     0,   234,   233,     0,   269,     0,    31,
  454.     88,   153,   102,     0,    31,    88,   186,   102,     0,    36,
  455.      0,     5,     0,   234,    36,     0,   234,     5,     0,    54,
  456.      0,     0,   237,     0,   236,    36,    60,   237,     0,   236,
  457.     36,    60,     0,   238,     0,   237,   238,     0,   237,    56,
  458.      0,   239,    56,     0,   239,   103,     0,   132,    60,     0,
  459.    132,    54,     0,   187,   240,     0,   190,   241,     0,   259,
  460.    332,   198,   207,     0,    60,   169,     0,     1,     0,   187,
  461.     88,   323,   102,   251,     0,   187,    44,   251,     0,     0,
  462.    242,     0,   240,    55,   243,     0,     0,   245,     0,   241,
  463.     55,   247,     0,   244,     0,   245,     0,   246,     0,   247,
  464.      0,   255,   332,   198,   207,     0,   255,   332,   198,   207,
  465.     58,   214,     0,     4,    60,   169,   207,     0,   259,   332,
  466.    198,   207,     0,   259,   332,   198,   207,    58,   214,     0,
  467.      3,    60,   169,   207,     0,    60,   169,   207,     0,   255,
  468.    332,   198,   207,     0,   255,   332,   198,   207,    58,   214,
  469.      0,     4,    60,   169,   207,     0,   259,   332,   198,   207,
  470.      0,   259,   332,   198,   207,    58,   214,     0,     3,    60,
  471.    169,   207,     0,    60,   169,   207,     0,   249,     0,   248,
  472.     55,   249,     0,   139,     0,   139,    58,   169,     0,   312,
  473.    273,     0,   312,     0,    88,   186,   102,    89,   153,   105,
  474.      0,     0,   251,     7,     0,     7,     0,   252,     7,     0,
  475.      0,   254,   153,     0,    75,   252,   255,     0,    65,   252,
  476.    255,     0,    75,   255,     0,    65,   255,     0,   271,   251,
  477.    255,     0,   258,     0,   266,     0,   257,     0,   267,   266,
  478.      0,   258,    88,   161,   102,   251,     0,   258,    88,   323,
  479.    102,   251,     0,   258,    44,   251,     0,   258,    88,     1,
  480.    102,   251,     0,   258,    89,   253,   105,     0,   258,    89,
  481.    105,     0,    88,   255,   102,     0,   267,   266,     0,   266,
  482.      0,    75,   252,   259,     0,    65,   252,   259,     0,    75,
  483.    259,     0,    65,   259,     0,   271,   251,   259,     0,   173,
  484.      0,    75,   252,   259,     0,    65,   252,   259,     0,    75,
  485.    260,     0,    65,   260,     0,   271,   251,   259,     0,   261,
  486.      0,   173,    88,   161,   102,   251,     0,   173,    88,   323,
  487.    102,   251,     0,   173,    44,   251,     0,   173,    88,     1,
  488.    102,   251,     0,    88,   172,   102,     0,    88,   260,   102,
  489.      0,   173,    89,   253,   105,     0,   173,    89,   105,     0,
  490.    267,   171,     0,   267,   170,     0,   263,     0,   272,   263,
  491.      0,   193,    88,   161,   102,     0,   193,    88,   172,   102,
  492.      0,   193,   185,     0,     4,     0,   143,     0,   268,     0,
  493.    267,   268,     0,     4,    51,     0,   143,    51,     0,   256,
  494.      0,   272,   256,     0,   257,     0,   272,   256,     0,   267,
  495.     75,     0,   272,   267,    75,     0,    51,     0,    75,   251,
  496.    273,     0,    75,   251,     0,    65,   251,   273,     0,    65,
  497.    251,     0,   271,   251,     0,   271,   251,   273,     0,   274,
  498.      0,    89,   153,   105,     0,   274,    89,   253,   105,     0,
  499.     75,   252,   275,     0,    75,   275,     0,    75,   252,     0,
  500.     75,     0,    65,   252,   275,     0,    65,   275,     0,    65,
  501.    252,     0,    65,     0,   271,   251,     0,   271,   251,   275,
  502.      0,   276,     0,    88,   275,   102,     0,    85,     0,   276,
  503.     88,   323,   102,   251,     0,   276,    44,   251,     0,   276,
  504.     89,   253,   105,     0,   276,    89,   105,     0,    88,   324,
  505.    102,   251,     0,   166,   251,     0,   185,   251,     0,    89,
  506.    253,   105,     0,    89,   105,     0,   289,     0,   278,     0,
  507.    277,   289,     0,   277,   278,     0,     1,    56,     0,     0,
  508.      0,   281,     0,   282,     0,   281,   282,     0,    34,   213,
  509.     56,     0,   284,     0,     1,   284,     0,    54,   279,   103,
  510.      0,    54,   279,   280,   277,   103,     0,    54,   279,   280,
  511.    277,     1,   103,     0,    54,   279,   280,     1,   103,     0,
  512.      0,     0,    13,   286,   279,   155,   287,   288,     0,   284,
  513.      0,   279,   290,     0,   284,     0,   290,     0,   183,     0,
  514.    153,    56,     0,     0,   285,    14,   291,   288,     0,   285,
  515.      0,     0,     0,    15,   292,   279,   155,   293,   159,     0,
  516.      0,     0,    16,   294,   288,    15,   295,   154,    56,     0,
  517.      0,     0,     0,   315,   296,   279,   156,    56,   297,   318,
  518.    102,   298,   159,     0,     0,     0,     0,   316,   299,   279,
  519.    156,    56,   300,   318,   102,   301,   159,     0,     0,    18,
  520.    279,    88,   157,   102,   302,   288,     0,     0,    19,   169,
  521.     60,   303,   289,     0,     0,    19,   169,    10,   169,    60,
  522.    304,   289,     0,     0,    20,    60,   305,   289,     0,    21,
  523.     56,     0,    22,    56,     0,    23,    56,     0,    23,   153,
  524.     56,     0,   111,   317,    88,   180,   102,    56,     0,   111,
  525.    317,    88,   180,    60,   319,   102,    56,     0,   111,   317,
  526.     88,   180,    60,   319,    60,   319,   102,    56,     0,   111,
  527.    317,    88,   180,    60,   319,    60,   319,    60,   322,   102,
  528.     56,     0,    24,    75,   153,    56,     0,    24,   139,    56,
  529.      0,   314,   289,     0,   314,   103,     0,    56,     0,   306,
  530.      0,     0,     0,    90,    54,   279,   307,   309,   308,   310,
  531.      0,   103,     0,   277,   103,     0,     1,   103,     0,     0,
  532.      0,   310,    91,   311,   313,   284,     0,   191,     0,   252,
  533.      0,    88,    10,   102,     0,    88,   329,   102,     0,     3,
  534.     60,     0,    53,    60,     0,     4,    60,     0,    17,    88,
  535.     56,     0,    17,    88,   153,    56,     0,    17,    88,    54,
  536.    103,     0,    17,    88,   183,     0,    17,    88,     1,    56,
  537.      0,    17,    88,    54,   279,   277,   103,     0,    17,    88,
  538.     54,   279,     1,   103,     0,     0,     7,     0,     0,   153,
  539.      0,     1,     0,     0,   320,     0,   321,     0,   320,    55,
  540.    321,     0,     9,    88,   153,   102,     0,     9,     0,   322,
  541.     55,     9,     0,     0,   324,     0,   186,     0,   325,     0,
  542.    326,    10,     0,   325,    10,     0,   186,    10,     0,    10,
  543.      0,    93,     0,   325,    93,     0,   186,    93,     0,   325,
  544.     60,     0,   186,    60,     0,   327,     0,   329,    58,   214,
  545.      0,   326,   328,     0,   326,   331,     0,   326,   331,    58,
  546.    214,     0,   325,    55,     0,   186,    55,     0,   188,   184,
  547.      0,   191,   184,     0,   193,   184,     0,   188,   275,     0,
  548.    188,     0,   190,   259,     0,   329,     0,   329,    58,   214,
  549.      0,   327,     0,   186,     0,     0,     0,   259,     0,     0,
  550.     92,    88,   334,   102,     0,   186,     0,   333,     0,   334,
  551.     55,   333,     0,     0,    75,   251,   335,     0,    65,   251,
  552.    335,     0,   271,   251,   335,     0,    41,     0,   336,    75,
  553.      0,   336,    76,     0,   336,    77,     0,   336,    73,     0,
  554.    336,    74,     0,   336,    65,     0,   336,    63,     0,   336,
  555.     64,     0,   336,    83,     0,   336,    55,     0,   336,    68,
  556.      0,   336,    69,     0,   336,    70,     0,   336,    67,     0,
  557.    336,    57,     0,   336,    58,     0,   336,    71,     0,   336,
  558.     72,     0,   336,    81,     0,   336,    82,     0,   336,    62,
  559.      0,   336,    61,     0,   336,   104,     0,   336,    59,    60,
  560.      0,   336,    66,     0,   336,    86,     0,   336,    78,     0,
  561.    336,    44,     0,   336,    89,   105,     0,   336,    38,     0,
  562.    336,    37,     0,   336,    38,    89,   105,     0,   336,    37,
  563.     89,   105,     0,   336,   312,   335,     0,   336,     1,     0
  564. };
  565.  
  566. #endif
  567.  
  568. #if YYDEBUG != 0
  569. static const short yyrline[] = { 0,
  570.    292,   293,   307,   309,   310,   314,   319,   323,   325,   328,
  571.    331,   335,   338,   340,   342,   343,   346,   348,   350,   353,
  572.    358,   363,   366,   370,   373,   377,   387,   391,   401,   403,
  573.    406,   411,   413,   417,   423,   423,   426,   426,   429,   429,
  574.    444,   444,   449,   454,   471,   494,   504,   505,   508,   509,
  575.    510,   511,   512,   515,   518,   521,   526,   531,   537,   539,
  576.    540,   559,   560,   561,   564,   578,   591,   594,   597,   600,
  577.    602,   604,   608,   614,   619,   624,   631,   642,   649,   651,
  578.    653,   657,   665,   667,   669,   671,   675,   688,   711,   714,
  579.    716,   717,   720,   726,   732,   734,   736,   738,   741,   745,
  580.    751,   753,   754,   757,   759,   762,   764,   765,   768,   771,
  581.    773,   775,   779,   784,   787,   789,   793,   798,   801,   805,
  582.    808,   811,   845,   861,   864,   868,   871,   875,   877,   879,
  583.    881,   883,   887,   889,   892,   897,   902,   907,   912,   915,
  584.    918,   922,   941,   948,   951,   954,   956,   958,   962,   966,
  585.    969,   971,   975,   978,   981,   990,   993,   996,   998,  1000,
  586.   1002,  1009,  1020,  1040,  1042,  1044,  1049,  1051,  1053,  1055,
  587.   1057,  1060,  1062,  1064,  1067,  1069,  1073,  1079,  1082,  1089,
  588.   1092,  1094,  1102,  1111,  1117,  1123,  1125,  1127,  1140,  1142,
  589.   1144,  1146,  1163,  1166,  1168,  1170,  1172,  1174,  1176,  1178,
  590.   1180,  1182,  1184,  1186,  1188,  1190,  1192,  1194,  1196,  1198,
  591.   1200,  1202,  1204,  1206,  1208,  1215,  1217,  1234,  1237,  1238,
  592.   1239,  1242,  1244,  1247,  1249,  1250,  1252,  1256,  1258,  1259,
  593.   1264,  1284,  1285,  1286,  1288,  1290,  1292,  1300,  1321,  1326,
  594.   1333,  1340,  1342,  1351,  1356,  1379,  1423,  1424,  1427,  1430,
  595.   1433,  1436,  1438,  1441,  1480,  1487,  1489,  1491,  1493,  1495,
  596.   1497,  1512,  1527,  1538,  1550,  1557,  1606,  1608,  1612,  1614,
  597.   1618,  1621,  1626,  1628,  1632,  1645,  1646,  1652,  1663,  1671,
  598.   1677,  1682,  1684,  1689,  1696,  1698,  1702,  1706,  1712,  1715,
  599.   1717,  1719,  1721,  1729,  1731,  1733,  1736,  1738,  1740,  1742,
  600.   1747,  1753,  1755,  1766,  1769,  1771,  1774,  1789,  1792,  1794,
  601.   1796,  1800,  1803,  1811,  1812,  1813,  1814,  1818,  1822,  1836,
  602.   1854,  1855,  1856,  1859,  1861,  1864,  1866,  1869,  1871,  1874,
  603.   1877,  1881,  1898,  1900,  1918,  1924,  1925,  1931,  1939,  1941,
  604.   1950,  1958,  1960,  1971,  1974,  1978,  1981,  1985,  1990,  1993,
  605.   1997,  2000,  2002,  2004,  2006,  2013,  2015,  2016,  2017,  2021,
  606.   2024,  2028,  2030,  2033,  2036,  2039,  2045,  2048,  2051,  2053,
  607.   2055,  2057,  2061,  2065,  2069,  2072,  2075,  2079,  2082,  2084,
  608.   2088,  2139,  2154,  2156,  2159,  2161,  2165,  2166,  2168,  2170,
  609.   2172,  2176,  2185,  2188,  2190,  2192,  2198,  2200,  2203,  2208,
  610.   2211,  2214,  2223,  2234,  2239,  2239,  2241,  2244,  2246,  2250,
  611.   2252,  2256,  2284,  2315,  2317,  2339,  2363,  2365,  2369,  2395,
  612.   2404,  2466,  2469,  2476,  2487,  2496,  2500,  2513,  2516,  2518,
  613.   2523,  2525,  2529,  2537,  2541,  2544,  2546,  2557,  2562,  2570,
  614.   2573,  2574,  2585,  2588,  2589,  2600,  2602,  2605,  2607,  2610,
  615.   2615,  2619,  2625,  2630,  2634,  2638,  2644,  2648,  2651,  2656,
  616.   2660,  2663,  2666,  2675,  2677,  2681,  2684,  2689,  2692,  2696,
  617.   2705,  2708,  2712,  2715,  2723,  2725,  2730,  2733,  2735,  2737,
  618.   2739,  2743,  2746,  2760,  2763,  2768,  2771,  2773,  2775,  2777,
  619.   2779,  2781,  2783,  2787,  2793,  2796,  2798,  2800,  2802,  2806,
  620.   2809,  2812,  2814,  2816,  2818,  2822,  2825,  2828,  2830,  2832,
  621.   2834,  2836,  2838,  2840,  2844,  2850,  2856,  2858,  2862,  2865,
  622.   2867,  2871,  2873,  2876,  2878,  2884,  2887,  2901,  2903,  2907,
  623.   2909,  2913,  2916,  2922,  2928,  2931,  2933,  2935,  2937,  2941,
  624.   2945,  2949,  2952,  2957,  2960,  2962,  2964,  2966,  2968,  2970,
  625.   2972,  2974,  2978,  2982,  2986,  2990,  2991,  2993,  2995,  2997,
  626.   2999,  3001,  3003,  3005,  3007,  3015,  3017,  3018,  3019,  3022,
  627.   3029,  3039,  3041,  3046,  3048,  3051,  3065,  3068,  3071,  3075,
  628.   3079,  3083,  3089,  3092,  3096,  3098,  3101,  3107,  3110,  3113,
  629.   3116,  3129,  3132,  3137,  3143,  3148,  3151,  3156,  3160,  3163,
  630.   3169,  3174,  3177,  3182,  3191,  3195,  3198,  3204,  3214,  3221,
  631.   3227,  3252,  3252,  3284,  3284,  3300,  3300,  3304,  3308,  3311,
  632.   3316,  3323,  3332,  3341,  3350,  3353,  3359,  3361,  3365,  3367,
  633.   3370,  3374,  3377,  3380,  3388,  3392,  3398,  3400,  3402,  3406,
  634.   3408,  3411,  3424,  3429,  3437,  3439,  3443,  3446,  3448,  3452,
  635.   3455,  3457,  3459,  3465,  3469,  3473,  3476,  3477,  3483,  3485,
  636.   3488,  3490,  3494,  3499,  3502,  3512,  3519,  3520,  3527,  3533,
  637.   3538,  3542,  3547,  3554,  3558,  3562,  3567,  3578,  3592,  3595,
  638.   3597,  3599,  3601,  3605,  3607,  3615,  3632,  3634,  3636,  3638,
  639.   3640,  3644,  3647,  3651,  3653,  3656,  3678,  3684,  3691,  3694,
  640.   3698,  3703,  3705,  3712,  3715,  3717,  3719,  3725,  3729,  3732,
  641.   3734,  3736,  3738,  3740,  3742,  3744,  3746,  3748,  3750,  3752,
  642.   3754,  3756,  3758,  3760,  3762,  3764,  3766,  3768,  3770,  3772,
  643.   3774,  3776,  3778,  3780,  3782,  3784,  3786,  3788,  3790,  3792,
  644.   3794,  3797,  3799
  645. };
  646.  
  647. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  648. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  649. "ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT","BREAK","CONTINUE",
  650. "RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD","TYPEOF","ALIGNOF","HEADOF",
  651. "CLASSOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","AGGR","VISSPEC","DELETE",
  652. "NEW","OVERLOAD","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","LEFT_RIGHT","TEMPLATE",
  653. "TYPEID","DYNAMIC_CAST","STATIC_CAST","REINTERPRET_CAST","CONST_CAST","SCOPE",
  654. "EMPTY","PTYPENAME","'{'","','","';'","ASSIGN","'='","'?'","':'","OROR","ANDAND",
  655. "'|'","'^'","'&'","MIN_MAX","EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT",
  656. "RSHIFT","'+'","'-'","'*'","'/'","'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS",
  657. "MINUSMINUS","'~'","HYPERUNARY","PAREN_STAR_PAREN","POINTSAT","'.'","'('","'['",
  658. "TRY","CATCH","THROW","TYPENAME_ELLIPSIS","PRE_PARSED_FUNCTION_DECL","EXTERN_LANG_STRING",
  659. "ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN","PTYPENAME_DEFN",
  660. "END_OF_SAVED_INPUT","')'","'}'","'!'","']'","program","extdefs","@1",".hush_warning",
  661. ".warning_ok","asm_keyword","lang_extdef","@2","extdef","extern_lang_string",
  662. "template_header","@3","template_parm_list","template_type_parm","template_parm",
  663. "overloaddef","ov_identifiers","template_def","@4","@5","@6","@7","fn_tmpl_end",
  664. "datadef","fndef","fn.def1","fn.def2","return_id","return_init","base_init",
  665. ".set_base_init","member_init_list","member_init","identifier","notype_identifier",
  666. "identifier_defn","explicit_instantiation","template_type","template_type_name",
  667. "tmpl.2","template_arg_list","template_arg","template_instantiate_once","@8",
  668. "template_instantiation","template_instantiate_some","unop","expr","paren_expr_or_null",
  669. "paren_cond_or_null","xcond","condition","@9","already_scoped_stmt","nontrivial_exprlist",
  670. "nonnull_exprlist","unary_expr","@10","new_placement","new_initializer","regcast_or_absdcl",
  671. "cast_expr","sub_cast_expr","expr_no_commas","notype_unqualified_id","unqualified_id",
  672. "expr_or_declarator","direct_notype_declarator","primary","@11","@12","new",
  673. "delete","boolean.literal","string","nodecls","object","decl","declarator","fcast_or_absdcl",
  674. "type_id","typed_declspecs","typed_declspecs1","reserved_declspecs","declmods",
  675. "typed_typespecs","reserved_typespecquals","typespec","typespecqual_reserved",
  676. "initdecls","notype_initdecls","nomods_initdecls","maybeasm","initdcl0","@13",
  677. "initdcl","@14","notype_initdcl0","@15","nomods_initdcl0","@16","maybe_attribute",
  678. "attributes","attribute","attribute_list","attrib","any_word","identifiers_or_typenames",
  679. "init","initlist","structsp","@17","@18","maybecomma","maybecomma_warn","aggr",
  680. "specialization","named_class_head_sans_basetype","named_class_head_sans_basetype_defn",
  681. "do_xref","do_xref_defn","named_class_head","unnamed_class_head","class_head",
  682. "maybe_base_class_list","base_class_list","base_class","base_class.1","base_class_access_list",
  683. "left_curly","opt.component_decl_list","component_decl_list","component_decl",
  684. "component_decl_1","components","notype_components","component_declarator0",
  685. "component_declarator","after_type_component_declarator0","notype_component_declarator0",
  686. "after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
  687. "new_type_id","type_quals","nonempty_type_quals","nonmomentary_expr","@19","after_type_declarator",
  688. "qualified_type_name","nested_type","direct_after_type_declarator","notype_declarator",
  689. "complex_notype_declarator","complex_direct_notype_declarator","qualified_id",
  690. "notype_qualified_id","overqualified_id","functional_cast","type_name","nested_name_specifier",
  691. "nested_name_specifier_1","complete_type_name","complex_type_name","ptr_to_mem",
  692. "global_scope","new_declarator","direct_new_declarator","absdcl","direct_abstract_declarator",
  693. "stmts","errstmt",".pushlevel","maybe_label_decls","label_decls","label_decl",
  694. "compstmt_or_error","compstmt","simple_if","@20","@21","implicitly_scoped_stmt",
  695. "stmt","simple_stmt","@22","@23","@24","@25","@26","@27","@28","@29","@30","@31",
  696. "@32","@33","@34","@35","@36","try_block","@37","@38","ansi_try_stmts","handler_seq",
  697. "@39","type_specifier_seq","handler_args","label_colon","forhead.1","forhead.2",
  698. "maybe_type_qual","xexpr","asm_operands","nonnull_asm_operands","asm_operand",
  699. "asm_clobbers","parmlist","complex_parmlist","parms","parms_comma","named_parm",
  700. "full_parm","parm","see_typename","bad_parm","maybe_raises","ansi_raise_identifier",
  701. "ansi_raise_identifiers","conversion_declarator","operator","operator_name",
  702. ""
  703. };
  704. #endif
  705.  
  706. static const short yyr1[] = {     0,
  707.    106,   106,   108,   107,   107,   109,   110,   111,   111,   113,
  708.    112,   114,   114,   114,   114,   114,   114,   114,   114,   114,
  709.    115,   117,   116,   118,   118,   119,   119,   120,   120,   120,
  710.    121,   122,   122,   124,   123,   125,   123,   126,   123,   127,
  711.    123,   123,   123,   123,   123,   123,   123,   123,   128,   128,
  712.    128,   128,   128,   129,   129,   129,   129,   129,   129,   129,
  713.    129,   129,   129,   129,   130,   130,   130,   130,   130,   130,
  714.    130,   130,   131,   131,   131,   131,   132,   132,   132,   132,
  715.    132,   133,   134,   134,   134,   134,   135,   136,   137,   137,
  716.    137,   137,   138,   138,   138,   138,   138,   138,   138,   138,
  717.    139,   139,   139,   140,   140,   141,   141,   141,   142,   142,
  718.    142,   142,   143,   144,   144,   144,   145,   146,   146,   147,
  719.    147,   149,   148,   150,   150,   151,   151,   152,   152,   152,
  720.    152,   152,   153,   153,   154,   154,   155,   155,   156,   156,
  721.    156,   158,   157,   157,   159,   159,   159,   159,   160,   160,
  722.    160,   160,   161,   161,   162,   163,   162,   162,   162,   162,
  723.    162,   162,   162,   162,   162,   162,   162,   162,   162,   162,
  724.    162,   162,   162,   162,   162,   162,   162,   164,   164,   165,
  725.    165,   165,   165,   166,   166,   167,   167,   167,   168,   168,
  726.    168,   168,   169,   169,   169,   169,   169,   169,   169,   169,
  727.    169,   169,   169,   169,   169,   169,   169,   169,   169,   169,
  728.    169,   169,   169,   169,   169,   169,   169,   170,   170,   170,
  729.    170,   171,   171,   172,   172,   172,   172,   173,   173,   173,
  730.    174,   174,   174,   174,   174,   174,   175,   174,   176,   174,
  731.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  732.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  733.    174,   174,   174,   174,   174,   174,   177,   177,   178,   178,
  734.    179,   179,   180,   180,   181,   182,   182,   183,   183,   183,
  735.    183,   183,   183,   183,   184,   184,   185,   185,   186,   186,
  736.    186,   186,   186,   187,   187,   188,   188,   188,   188,   188,
  737.    189,   189,   189,   190,   190,   190,   190,   191,   191,   191,
  738.    191,   192,   192,   193,   193,   193,   193,   193,   193,   193,
  739.    194,   194,   194,   195,   195,   196,   196,   197,   197,   198,
  740.    198,   200,   199,   199,   202,   201,   201,   204,   203,   203,
  741.    206,   205,   205,   207,   207,   208,   208,   209,   210,   210,
  742.    211,   211,   211,   211,   211,   212,   212,   212,   212,   213,
  743.    213,   214,   214,   214,   214,   214,   215,   215,   215,   215,
  744.    215,   215,   217,   216,   216,   218,   216,   216,   216,   216,
  745.    216,   216,   219,   219,   220,   220,   221,   221,   221,   221,
  746.    221,   222,   223,   223,   223,   223,   223,   223,   224,   225,
  747.    226,   227,   227,   228,   229,   229,   230,   230,   230,   231,
  748.    231,   232,   232,   233,   233,   233,   234,   234,   234,   234,
  749.    235,   236,   236,   236,   236,   237,   237,   237,   238,   238,
  750.    238,   238,   239,   239,   239,   239,   239,   239,   239,   240,
  751.    240,   240,   241,   241,   241,   242,   242,   243,   243,   244,
  752.    244,   244,   245,   245,   245,   245,   246,   246,   246,   247,
  753.    247,   247,   247,   248,   248,   249,   249,   250,   250,   250,
  754.    251,   251,   252,   252,   254,   253,   255,   255,   255,   255,
  755.    255,   255,   256,   256,   257,   258,   258,   258,   258,   258,
  756.    258,   258,   258,   258,   259,   259,   259,   259,   259,   259,
  757.    260,   260,   260,   260,   260,   260,   261,   261,   261,   261,
  758.    261,   261,   261,   261,   262,   263,   264,   264,   265,   265,
  759.    265,   266,   266,   267,   267,   268,   268,   269,   269,   270,
  760.    270,   271,   271,   272,   273,   273,   273,   273,   273,   273,
  761.    273,   274,   274,   275,   275,   275,   275,   275,   275,   275,
  762.    275,   275,   275,   275,   276,   276,   276,   276,   276,   276,
  763.    276,   276,   276,   276,   276,   277,   277,   277,   277,   278,
  764.    279,   280,   280,   281,   281,   282,   283,   283,   284,   284,
  765.    284,   284,   286,   287,   285,   288,   288,   289,   289,   290,
  766.    290,   291,   290,   290,   292,   293,   290,   294,   295,   290,
  767.    296,   297,   298,   290,   299,   300,   301,   290,   302,   290,
  768.    303,   290,   304,   290,   305,   290,   290,   290,   290,   290,
  769.    290,   290,   290,   290,   290,   290,   290,   290,   290,   290,
  770.    307,   308,   306,   309,   309,   309,   310,   311,   310,   312,
  771.    312,   313,   313,   314,   314,   314,   315,   315,   315,   316,
  772.    316,   316,   316,   317,   317,   318,   318,   318,   319,   319,
  773.    320,   320,   321,   322,   322,   323,   323,   323,   324,   324,
  774.    324,   324,   324,   324,   324,   324,   324,   324,   325,   325,
  775.    325,   325,   325,   326,   326,   327,   327,   327,   327,   327,
  776.    327,   328,   328,   329,   329,   330,   331,   331,   332,   332,
  777.    333,   334,   334,   335,   335,   335,   335,   336,   337,   337,
  778.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  779.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  780.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  781.    337,   337,   337
  782. };
  783.  
  784. static const short yyr2[] = {     0,
  785.      0,     1,     0,     2,     2,     0,     0,     1,     1,     0,
  786.      2,     1,     1,     1,     1,     5,     4,     3,     4,     4,
  787.      1,     0,     5,     1,     3,     1,     2,     1,     3,     1,
  788.      3,     1,     3,     0,     5,     0,     5,     0,     5,     0,
  789.      5,     3,     3,     6,     7,     4,     3,     3,     1,     1,
  790.      1,     1,     1,     2,     3,     3,     3,     3,     2,     2,
  791.      2,     2,     2,     1,     3,     4,     3,     5,     4,     3,
  792.      3,     2,     3,     3,     2,     1,     6,     4,     3,     3,
  793.      2,     2,     1,     3,     4,     2,     3,     0,     0,     1,
  794.      3,     2,     3,     1,     4,     2,     4,     2,     4,     2,
  795.      1,     1,     1,     1,     1,     1,     1,     1,     3,     3,
  796.      4,     4,     3,     4,     3,     4,     0,     1,     3,     1,
  797.      1,     0,     6,     0,     1,     0,     2,     1,     1,     1,
  798.      1,     1,     1,     1,     1,     3,     1,     3,     0,     1,
  799.      1,     0,     8,     1,     2,     4,     4,     1,     3,     3,
  800.      3,     3,     1,     1,     1,     0,     3,     2,     2,     2,
  801.      2,     2,     2,     4,     2,     4,     2,     3,     3,     4,
  802.      4,     5,     5,     6,     2,     4,     5,     3,     3,     3,
  803.      1,     3,     2,     3,     4,     1,     2,     5,     1,     4,
  804.      4,     4,     1,     3,     3,     3,     3,     3,     3,     3,
  805.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  806.      3,     3,     5,     3,     3,     1,     2,     3,     1,     1,
  807.      1,     1,     1,     1,     1,     2,     2,     1,     1,     1,
  808.      1,     1,     1,     1,     3,     3,     0,     4,     0,     6,
  809.      2,     4,     2,     2,     1,     4,     1,     7,     7,     7,
  810.      7,     4,     4,     2,     2,     1,     4,     2,     2,     2,
  811.      5,     3,     5,     3,     4,     6,     1,     2,     1,     2,
  812.      1,     1,     1,     2,     0,     2,     2,     3,     3,     3,
  813.      3,     3,     2,     2,     1,     1,     1,     2,     2,     2,
  814.      2,     1,     1,     1,     1,     2,     2,     3,     3,     4,
  815.      1,     2,     2,     1,     1,     2,     2,     1,     2,     2,
  816.      3,     1,     2,     1,     1,     1,     4,     4,     4,     4,
  817.      1,     1,     1,     1,     3,     1,     3,     1,     3,     0,
  818.      4,     0,     7,     4,     0,     7,     4,     0,     7,     4,
  819.      0,     7,     4,     0,     1,     1,     2,     6,     1,     3,
  820.      0,     1,     4,     6,     4,     1,     1,     1,     1,     1,
  821.      3,     1,     2,     3,     4,     1,     1,     3,     4,     6,
  822.      3,     5,     0,     7,     4,     0,     6,     3,     2,     2,
  823.      4,     1,     0,     1,     0,     1,     1,     2,     2,     2,
  824.      2,     3,     2,     2,     2,     3,     3,     1,     2,     0,
  825.      0,     3,     3,     2,     1,     1,     0,     1,     2,     1,
  826.      3,     1,     2,     1,     4,     4,     1,     1,     2,     2,
  827.      1,     0,     1,     4,     3,     1,     2,     2,     2,     2,
  828.      2,     2,     2,     2,     4,     2,     1,     5,     3,     0,
  829.      1,     3,     0,     1,     3,     1,     1,     1,     1,     4,
  830.      6,     4,     4,     6,     4,     3,     4,     6,     4,     4,
  831.      6,     4,     3,     1,     3,     1,     3,     2,     1,     6,
  832.      0,     2,     1,     2,     0,     2,     3,     3,     2,     2,
  833.      3,     1,     1,     1,     2,     5,     5,     3,     5,     4,
  834.      3,     3,     2,     1,     3,     3,     2,     2,     3,     1,
  835.      3,     3,     2,     2,     3,     1,     5,     5,     3,     5,
  836.      3,     3,     4,     3,     2,     2,     1,     2,     4,     4,
  837.      2,     1,     1,     1,     2,     2,     2,     1,     2,     1,
  838.      2,     2,     3,     1,     3,     2,     3,     2,     2,     3,
  839.      1,     3,     4,     3,     2,     2,     1,     3,     2,     2,
  840.      1,     2,     3,     1,     3,     1,     5,     3,     4,     3,
  841.      4,     2,     2,     3,     2,     1,     1,     2,     2,     2,
  842.      0,     0,     1,     1,     2,     3,     1,     2,     3,     5,
  843.      6,     5,     0,     0,     6,     1,     2,     1,     1,     1,
  844.      2,     0,     4,     1,     0,     0,     6,     0,     0,     7,
  845.      0,     0,     0,    10,     0,     0,     0,    10,     0,     7,
  846.      0,     5,     0,     7,     0,     4,     2,     2,     2,     3,
  847.      6,     8,    10,    12,     4,     3,     2,     2,     1,     1,
  848.      0,     0,     7,     1,     2,     2,     0,     0,     5,     1,
  849.      1,     3,     3,     2,     2,     2,     3,     4,     4,     3,
  850.      4,     6,     6,     0,     1,     0,     1,     1,     0,     1,
  851.      1,     3,     4,     1,     3,     0,     1,     1,     1,     2,
  852.      2,     2,     1,     1,     2,     2,     2,     2,     1,     3,
  853.      2,     2,     4,     2,     2,     2,     2,     2,     2,     1,
  854.      2,     1,     3,     1,     1,     0,     0,     1,     0,     4,
  855.      1,     1,     3,     0,     3,     3,     3,     1,     2,     2,
  856.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  857.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  858.      2,     3,     2,     2,     2,     2,     3,     2,     2,     4,
  859.      4,     3,     2
  860. };
  861.  
  862. static const short yydefact[] = {     3,
  863.     10,    10,     5,     0,     4,     0,   220,   522,   305,   315,
  864.    473,     0,     8,     9,     0,     0,   387,     0,   708,     0,
  865.    534,   221,    64,     0,     0,   696,     0,    76,    21,     0,
  866.     11,     6,     0,    15,    14,    13,    12,   275,     0,   523,
  867.    117,   229,   500,     0,   295,     0,   294,   308,     0,   328,
  868.    314,     0,   398,   400,   401,   406,   405,   382,   304,   528,
  869.    484,     0,   228,   230,   483,     0,   524,   316,   471,     0,
  870.      0,   219,    62,    63,   526,     0,     0,   101,   102,   103,
  871.    376,   379,     0,   530,     0,   380,     0,     0,     0,    32,
  872.      0,   305,     0,    22,     0,     0,   398,     0,     0,     0,
  873.      0,   498,     0,     0,     0,   497,     0,     0,     0,   229,
  874.      0,     0,     0,   228,   230,   471,     0,     3,     0,     0,
  875.      0,     0,   400,   401,   699,     0,    88,    83,   275,     0,
  876.      0,    60,   527,   124,   471,     0,   475,    61,     0,     0,
  877.      0,     0,     0,   324,   285,   482,   286,   494,     0,   471,
  878.    307,   306,    59,   296,     0,   326,     0,   301,   321,   322,
  879.    297,   310,   312,   323,     0,    54,   388,   389,   390,   391,
  880.    404,   107,   106,   108,   393,   399,   395,   117,   394,   407,
  881.    407,   421,     0,   474,   309,    72,     0,    75,   532,   516,
  882.    485,   525,     0,   529,     0,   743,   739,   738,   736,   718,
  883.    723,   724,     0,   730,   729,   715,   716,   714,   733,   722,
  884.    719,   720,   721,   725,   726,   712,   713,   709,   710,   711,
  885.    735,   727,   728,   717,   734,     0,   731,   640,   308,   641,
  886.    704,   473,   232,   273,     0,     0,     0,     0,   156,   269,
  887.    267,   245,   271,   272,     0,     0,     0,     0,     0,     0,
  888.      0,   129,   128,     0,   130,   131,     0,     0,   216,   132,
  889.      0,   118,     0,   189,     0,   193,   186,   121,   231,   155,
  890.      0,     0,   233,   234,     0,   120,   292,   308,   293,   517,
  891.    256,   247,     0,     0,     0,   398,   378,     0,   373,   531,
  892.      0,   133,   134,     0,     0,     0,     0,    31,     0,   110,
  893.    407,   125,   109,   115,     0,   496,     0,   495,   102,   103,
  894.    218,   227,     0,   504,   226,     0,   503,   511,   512,     0,
  895.      0,    18,    10,     0,     7,     7,    48,    47,   699,     0,
  896.     34,    42,    38,    36,    43,    40,   330,    82,    89,    86,
  897.      0,     0,   275,     0,     0,     0,   571,    65,   577,    67,
  898.    113,   509,     0,   673,   674,   154,     0,   153,   668,   690,
  899.      0,   292,   308,   293,     0,   667,   669,   697,   679,     0,
  900.    514,     0,     0,     0,   480,     0,   479,     0,     0,     0,
  901.    471,    70,    58,    73,     0,    57,   471,     0,   475,   493,
  902.      0,   298,   299,     0,    55,    71,    56,    74,   303,   302,
  903.    313,   699,   329,   396,   392,   397,   408,   402,   403,   437,
  904.      0,     0,   440,   443,     0,     0,   426,     0,   699,   311,
  905.      0,     0,   344,   472,   499,   533,     0,     0,   732,   737,
  906.    471,   471,     0,   471,   742,     0,     0,     0,   163,     0,
  907.      0,   165,     0,     0,     0,     0,     0,     0,     0,     0,
  908.    162,   159,   158,   160,     0,     0,     0,     0,   217,     0,
  909.    116,   161,     0,     0,   187,     0,     0,     0,     0,     0,
  910.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  911.      0,     0,     0,     0,     0,     0,     0,   241,   243,   244,
  912.    277,   276,     0,     0,     0,     0,     0,   167,   469,     0,
  913.    175,   274,   223,     0,   696,   222,   259,   260,     0,   287,
  914.    551,   547,   556,     0,   475,   471,   471,   471,   289,   554,
  915.      0,   521,   291,     0,   290,   258,     0,   254,   268,   270,
  916.    518,     0,   255,   112,   111,   466,   385,   464,   375,     0,
  917.    317,     0,     0,   318,   319,   320,    33,     0,    28,    24,
  918.    695,   308,    26,   694,    30,   692,   122,   114,   502,   501,
  919.    505,     0,    17,    20,    19,   330,    53,    49,    51,    52,
  920.     50,    46,     0,     0,     0,     0,   344,   104,    94,   105,
  921.      0,    87,    90,     0,     0,     0,   366,     0,   362,    84,
  922.      0,     0,    66,    69,   578,   572,   471,   471,   672,   685,
  923.    678,   676,   551,   547,     0,   686,   471,   689,   691,   687,
  924.      0,   688,   471,   671,   684,   677,   675,   670,   698,   681,
  925.    682,     0,   513,   476,   478,   477,     0,     0,   492,     0,
  926.    344,   325,   488,     0,     0,     0,   491,     0,   481,   300,
  927.    327,   344,   330,   418,     0,   417,   409,   410,   412,     0,
  928.    414,   436,   432,   431,   220,   522,   471,     0,   666,   699,
  929.    433,   441,   446,   447,   699,   699,   434,   444,   699,     0,
  930.    381,   428,   427,   429,   430,   330,   701,   308,   702,     0,
  931.      0,     0,   343,   345,   346,   741,   740,   704,   704,   704,
  932.      0,     0,     0,   521,     0,     0,   522,     0,   157,     0,
  933.      0,     0,     0,     0,     0,   236,   235,     0,   184,   119,
  934.    220,   522,   221,     0,     0,   367,   383,     0,   215,   214,
  935.    658,   657,     0,   212,   211,   209,   210,   208,   207,   206,
  936.    203,   204,   205,   201,   202,   196,   197,   198,   199,   200,
  937.    194,   195,     0,     0,     0,     0,     0,     0,   169,   181,
  938.      0,     0,   168,   471,   471,     0,   471,   468,   541,     0,
  939.      0,     0,     0,   262,     0,   264,     0,   515,   550,   549,
  940.    546,   545,   695,     0,     0,   565,     0,     0,   562,   288,
  941.    563,   552,   471,   666,   475,   551,   547,     0,     0,   471,
  942.    231,     0,   517,     0,     0,     0,   386,     0,   385,   152,
  943.    151,   150,   149,     0,    23,     0,   393,     0,     0,    16,
  944.    344,    35,    39,    37,    41,     0,     0,    92,     0,    96,
  945.      0,   100,     0,    98,     0,   363,     0,    85,    68,     0,
  946.    579,     0,   573,   574,   510,   507,   550,   546,   551,   547,
  947.    483,     0,   471,   552,   551,   547,     0,   231,     0,   517,
  948.    508,     0,   680,   334,   471,   471,   471,   490,   340,   344,
  949.      0,     0,   420,   419,   413,     0,     0,   439,   344,     0,
  950.     79,     0,   330,   330,     0,   330,     0,   344,     0,   700,
  951.      0,     0,   341,   347,   706,   705,   707,   246,   164,     0,
  952.      0,   166,   190,   192,   191,   252,   253,     0,     0,     0,
  953.      0,   238,     0,     0,     0,     0,   185,     0,   239,   242,
  954.    179,   178,   171,     0,   170,   183,     0,     0,   538,   536,
  955.      0,   539,   475,   176,     0,     0,   265,     0,     0,   548,
  956.    544,   555,   471,   564,   553,   558,     0,   560,     0,   551,
  957.    547,   519,   520,     0,   257,   467,   465,   377,     0,    25,
  958.     29,   693,     0,     0,    44,    93,    91,     0,     0,     0,
  959.      0,   364,   360,     0,     0,   220,   522,   583,   595,   598,
  960.      0,   571,     0,     0,     0,     0,     0,     0,   221,   629,
  961.      0,   654,     0,   590,     0,     0,   308,     0,   567,   588,
  962.    594,   566,   589,   630,     0,   601,   605,   575,   550,   546,
  963.    485,   552,   520,   683,   332,   489,   486,   487,   338,   337,
  964.      0,     0,   411,   344,   344,    78,   456,   471,   220,   522,
  965.      0,   442,   448,   449,   699,   699,   344,   344,   445,     0,
  966.    435,   703,   331,   351,     0,     0,     0,     0,     0,     0,
  967.    371,     0,     0,   368,   188,   213,   126,     0,   172,   173,
  968.    180,   182,   537,   535,   542,   540,     0,   177,     0,   261,
  969.    263,   561,   471,   559,   374,     0,    45,    95,    99,    97,
  970.    365,     0,   576,   570,   582,   644,   646,   571,   571,   571,
  971.      0,     0,     0,   615,   617,   618,   619,     0,     0,     0,
  972.    645,   571,   655,     0,   591,   283,   699,     0,   284,     0,
  973.    699,     0,   699,     0,     0,   580,   569,   568,   592,   628,
  974.    627,   571,   571,     0,     0,   335,   415,   416,   455,   452,
  975.    438,     0,     0,   344,   330,   330,   450,   453,   357,   358,
  976.    359,   356,     0,   349,   352,   342,     0,     0,     0,     0,
  977.    369,     0,     0,   126,   240,     0,   174,   543,   266,   557,
  978.    123,   361,     0,     0,     0,   586,     0,     0,   571,   647,
  979.      0,   650,     0,     0,   611,     0,   620,     0,   626,   631,
  980.      0,   279,   330,   281,   282,   330,     0,     0,     0,   278,
  981.    280,   581,   571,     0,     0,   333,   339,     0,    77,   344,
  982.    344,   463,   344,   344,     0,     0,   351,     0,     0,   248,
  983.    249,   250,   251,     0,   372,   127,   470,   137,     0,   584,
  984.    596,   587,   599,   651,   649,     0,   648,   144,     0,   308,
  985.      0,     0,     0,   616,   625,     0,     0,   593,   141,     0,
  986.    140,     0,   336,   462,   459,   457,   460,   451,   454,   350,
  987.    348,   220,     0,   370,     0,   571,     0,     0,     0,     0,
  988.    609,   699,   613,   612,     0,   634,     0,   632,   659,     0,
  989.    602,   606,     0,     0,     0,   353,   355,   138,   585,   572,
  990.    597,   148,   135,     0,     0,   653,     0,   652,   571,   330,
  991.      0,   636,   635,   637,     0,     0,   660,   661,   621,     0,
  992.      0,   458,   461,     0,   145,     0,     0,   600,   610,   344,
  993.    614,   633,     0,   659,     0,     0,     0,     0,   354,     0,
  994.      0,   136,     0,   638,     0,     0,   622,   662,   603,   607,
  995.    147,   146,   142,     0,   663,     0,     0,     0,     0,     0,
  996.      0,     0,   664,     0,   623,   604,   608,   143,     0,     0,
  997.    639,     0,     0,   642,   643,   665,   624,     0,     0,     0
  998. };
  999.  
  1000. static const short yydefgoto[] = {  1348,
  1001.      1,     2,   119,   564,   982,     3,     4,    31,    32,    33,
  1002.    299,   548,   549,   550,    34,    91,    35,   573,   575,   574,
  1003.    576,   572,    36,    37,    38,   412,   128,   129,   130,   339,
  1004.    582,   583,   536,   584,   176,    39,    40,    41,   134,   261,
  1005.    262,   302,   809,   303,  1145,   263,   983,  1275,  1210,  1230,
  1006.   1231,  1330,  1271,   292,   789,   264,   445,   497,   753,   265,
  1007.    266,   267,   293,   269,   507,   312,    43,   270,   457,  1047,
  1008.    271,   272,   273,   274,   131,   275,   984,   402,   517,   773,
  1009.    985,    45,   161,   986,    47,   162,   440,   163,   143,   155,
  1010.     49,   631,   144,  1114,   403,  1188,   156,  1115,    50,  1035,
  1011.    683,   684,   685,  1133,  1134,  1135,   964,   716,   717,    51,
  1012.    540,   288,   906,   798,    52,    53,    54,    55,   180,   181,
  1013.     56,    57,    58,   408,   647,   648,   649,   650,   183,   415,
  1014.    416,   417,   418,   661,   667,   662,  1022,   663,   664,  1023,
  1015.   1024,   537,   538,   498,   779,    59,   372,   373,   145,    60,
  1016.     61,   146,   147,   113,    63,   508,   280,   281,   282,    65,
  1017.    283,    67,    68,   179,    69,   284,   758,   759,   770,   520,
  1018.    988,   989,  1155,   832,   833,   834,   348,   990,   991,  1078,
  1019.   1246,  1157,   992,   993,  1183,  1079,  1247,  1080,  1248,  1112,
  1020.   1290,  1328,  1113,  1291,  1329,  1279,  1223,  1281,  1166,   994,
  1021.   1226,  1284,  1258,  1302,  1324,  1221,  1332,   995,   996,   997,
  1022.   1094,   723,  1286,  1287,  1288,  1334,   365,   775,   367,   368,
  1023.    369,   555,   370,   107,   621,  1173,   679,   680,   435,    71,
  1024.     72
  1025. };
  1026.  
  1027. static const short yypact[] = {   203,
  1028.    236,-32768,-32768,  1874,-32768,    85,-32768,    55,   300,-32768,
  1029. -32768,   590,-32768,-32768,   -23,   252,-32768,   365,-32768,  1493,
  1030. -32768,   355,-32768,   963,   963,-32768,  2214,-32768,-32768,   349,
  1031. -32768,   429,  3939,-32768,-32768,-32768,-32768,   279,   435,   443,
  1032. -32768,-32768,   396,  1052,-32768,  9215,-32768,   704,    30,-32768,
  1033. -32768,   698,-32768,-32768,-32768,-32768,-32768,   488,  1610,-32768,
  1034. -32768,   410,-32768,-32768,-32768,   397,-32768,-32768,-32768,    89,
  1035.   6309,-32768,-32768,-32768,-32768,  8124,  2133,-32768,    55,   355,
  1036.    461,   515,   443,-32768,    89,-32768,    89,  8124,  8124,-32768,
  1037.    363,-32768,   355,-32768,  3239,  4205,   230,    89,  7950,    55,
  1038.   2347,-32768,   484,   103,  2347,-32768,    92,  2356,  2356,   479,
  1039.    501,   396,   514,   519,   540,-32768,   629,   555,  2912,   144,
  1040.   3239,  9396,   593,   706,   572,   666,-32768,   149,   306,    57,
  1041.     57,-32768,-32768,   575,-32768,  4662,   589,-32768,  3833,  3833,
  1042.   3542,  1266,   393,-32768,-32768,   408,-32768,-32768,   397,-32768,
  1043. -32768,-32768,-32768,   704,   536,-32768,  1285,-32768,-32768,-32768,
  1044.    907,   654,-32768,-32768,  3239,-32768,-32768,-32768,-32768,-32768,
  1045. -32768,-32768,-32768,-32768,-32768,-32768,   443,   719,-32768,   617,
  1046.    617,-32768,  2447,-32768,   654,-32768,   608,   875,-32768,-32768,
  1047. -32768,-32768,  4014,-32768,    56,-32768,   609,   647,-32768,-32768,
  1048. -32768,-32768,   683,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1049. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1050. -32768,-32768,-32768,-32768,-32768,   601,-32768,-32768,   654,  1610,
  1051.    351,   657,-32768,-32768,  3117,  9065,   660,   662,-32768,-32768,
  1052. -32768,-32768,-32768,-32768,   665,   690,   692,   699,   703,    92,
  1053.   8816,-32768,-32768,  8816,-32768,-32768,  8816,  6393,  9148,-32768,
  1054.     29,-32768,  8816,-32768,  8211,-32768,-32768,  9444,-32768,  1334,
  1055.   2712,  8294,-32768,   767,   557,-32768,   160,  2819,  9439,-32768,
  1056.    266,-32768,   579,   809,  3239,   230,-32768,    92,   685,-32768,
  1057.    684,   738,  9497,   693,   697,   701,   808,-32768,  2133,-32768,
  1058.    617,-32768,-32768,-32768,   154,-32768,   139,-32768,-32768,-32768,
  1059. -32768,-32768,  2347,-32768,-32768,  2347,-32768,-32768,-32768,  4014,
  1060.     50,-32768,   711,  2133,-32768,-32768,-32768,-32768,   572,   766,
  1061. -32768,-32768,-32768,-32768,-32768,-32768,   656,-32768,   254,-32768,
  1062.   6483,  8381,-32768,    57,    57,   765,-32768,-32768,-32768,-32768,
  1063. -32768,   818,   730,-32768,-32768,   738,   735,  9497,   328,  1775,
  1064.   9396,  1775,  4904,  4548,   737,-32768,    72,  9289,   763,   787,
  1065. -32768,   746,  8381,  4250,-32768,  4250,-32768,  4314,  4314,   753,
  1066. -32768,-32768,-32768,   875,  3239,-32768,-32768,  5854,   752,-32768,
  1067.   4433,   907,   704,  3239,-32768,-32768,-32768,   875,-32768,-32768,
  1068. -32768,   572,-32768,-32768,-32768,-32768,  1191,-32768,-32768,-32768,
  1069.   8381,   156,  1389,  9306,    54,  2311,-32768,   167,   572,   654,
  1070.   2569,   771,   831,-32768,-32768,-32768,   773,   777,-32768,-32768,
  1071. -32768,-32768,   169,-32768,-32768,  8381,   657,  6393,-32768,   381,
  1072.   6393,-32768,  8381,  8468,  8816,  8124,  2569,  2569,  2569,  2569,
  1073. -32768,-32768,-32768,-32768,   782,   784,   765,   793,-32768,  8124,
  1074. -32768,-32768,  3487,  6393,-32768,  8381,  8381,  3006,  8381,  8381,
  1075.   8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,
  1076.   8381,  8381,  8381,  8381,  8381,  8381,  8381,-32768,-32768,-32768,
  1077. -32768,-32768,  8381,  8381,  8381,  8124,  3398,   497,   109,  7032,
  1078. -32768,-32768,    55,   848,   896,-32768,   387,   415,   592,-32768,
  1079.    388,   388,-32768,  3838,   798,   817,   864,-32768,-32768,   412,
  1080.   7507,  1099,-32768,   251,-32768,-32768,  8381,-32768,-32768,-32768,
  1081. -32768,   597,-32768,-32768,-32768,   851,   855,-32768,-32768,    92,
  1082. -32768,  6855,  6945,-32768,-32768,-32768,-32768,   419,   859,-32768,
  1083. -32768,  9200,   698,-32768,-32768,   862,-32768,-32768,-32768,-32768,
  1084. -32768,   865,-32768,-32768,-32768,   656,-32768,-32768,-32768,-32768,
  1085. -32768,-32768,   866,   868,   869,   870,   831,-32768,-32768,   355,
  1086.   8381,   877,-32768,   434,   438,   462,-32768,  5956,  9590,-32768,
  1087.    836,    57,-32768,-32768,-32768,    20,-32768,-32768,-32768,-32768,
  1088. -32768,-32768,  1506,  1506,  3333,-32768,-32768,-32768,-32768,-32768,
  1089.   7598,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1090.    887,  6483,-32768,-32768,-32768,-32768,  4250,  4250,-32768,  4433,
  1091.    831,-32768,   818,   849,   856,   861,-32768,   863,-32768,   907,
  1092. -32768,   831,   656,-32768,   881,-32768,   899,-32768,-32768,  1243,
  1093. -32768,  9590,-32768,-32768,   912,   146,-32768,  8381,  2808,   572,
  1094.    921,-32768,-32768,-32768,   368,   407,   922,-32768,   572,   920,
  1095. -32768,-32768,-32768,-32768,-32768,   551,-32768,  4154,-32768,   187,
  1096.    629,   897,   926,   831,-32768,-32768,-32768,   505,   505,   505,
  1097.    885,   886,  8555,   864,   895,   900,   248,   901,-32768,   906,
  1098.    909,   919,   942,   943,   945,-32768,-32768,   918,-32768,-32768,
  1099.    962,   553,   136,  8381,   969,-32768,   968,   928,  9590,  9590,
  1100. -32768,-32768,   973,  9629,  4583,  9645,  9660,  5903,  6801,  3406,
  1101.   1324,  1324,  1324,  1664,  1664,   814,   814,   640,   640,   640,
  1102. -32768,-32768,   932,   934,   940,   935,   946,  2569,   497,-32768,
  1103.   6483,  8381,-32768,-32768,-32768,  8381,-32768,-32768,   955,  8816,
  1104.    944,   964,  1008,-32768,  8381,-32768,  8381,-32768,   890,-32768,
  1105.    890,-32768,    65,   951,   952,-32768,   953,  2569,   818,-32768,
  1106.    818,  2046,-32768,  1065,   957,  7689,  7689,  4811,   966,  8211,
  1107.    479,   972,   540,   809,   974,  8381,    92,   961,   855,-32768,
  1108.   9590,-32768,  9590,  2133,-32768,   664,   520,  6483,   488,-32768,
  1109.    831,-32768,-32768,-32768,-32768,   766,   978,-32768,   254,-32768,
  1110.   8381,-32768,  8381,-32768,  8381,-32768,     9,-32768,-32768,    92,
  1111. -32768,  5584,  1032,-32768,   818,   818,  2757,  2757,  3282,  3282,
  1112. -32768,   397,-32768,  3954,  7776,  7776,  5016,   174,   979,   244,
  1113.    818,  6483,-32768,  1030,-32768,-32768,-32768,-32768,  1037,   831,
  1114.   8124,  1191,-32768,-32768,-32768,  8381,  8381,    74,  9521,   995,
  1115. -32768,  2416,   656,   656,  3185,   603,  3228,   831,  2569,-32768,
  1116.     52,  1011,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  8899,
  1117.   8899,-32768,-32768,-32768,-32768,-32768,-32768,  1013,  1014,  1019,
  1118.   1022,-32768,  9472,  6483,  6046,  1009,-32768,  8381,-32768,-32768,
  1119. -32768,-32768,   143,  1012,-32768,-32768,  1017,    75,   278,   278,
  1120.   1006,   278,-32768,-32768,  8816,  1107,-32768,  1018,  1020,-32768,
  1121. -32768,-32768,-32768,-32768,-32768,   818,  1023,-32768,  1010,  7863,
  1122.   7863,-32768,-32768,   584,-32768,  9590,-32768,-32768,  1021,-32768,
  1123. -32768,-32768,  2447,   766,-32768,-32768,-32768,  1024,  1026,  1036,
  1124.   6136,-32768,-32768,   668,   231,  1061,   567,-32768,-32768,-32768,
  1125.   1046,-32768,  8381,  1079,  1085,  1088,  8037,    73,   476,-32768,
  1126.   1093,  1139,  1094,-32768,  1971,  9379,  2582,  3725,-32768,-32768,
  1127.   1135,-32768,-32768,-32768,  7135,-32768,-32768,-32768,  2757,  2757,
  1128. -32768,  3954,  1989,-32768,-32768,   818,   818,   818,-32768,  1095,
  1129.   1053,  1054,-32768,  9521,  9521,-32768,-32768,-32768,  1103,   661,
  1130.   8381,-32768,-32768,-32768,   572,   572,   831,   831,-32768,  2607,
  1131. -32768,-32768,-32768,   801,  6483,  8381,  8381,  8381,  8381,  6483,
  1132. -32768,  8381,  1104,-32768,-32768,  9611,   575,  8381,-32768,   143,
  1133. -32768,-32768,-32768,-32768,-32768,-32768,  1062,-32768,  1122,-32768,
  1134. -32768,   818,-32768,-32768,-32768,    66,-32768,-32768,-32768,-32768,
  1135. -32768,    92,-32768,-32768,-32768,-32768,-32768,-32768,-32768,   765,
  1136.   6226,  1082,  5075,-32768,-32768,-32768,-32768,  1115,  8381,  1121,
  1137. -32768,-32768,-32768,  1090,-32768,-32768,   238,   672,-32768,   772,
  1138.    572,  8642,   459,   774,   258,-32768,-32768,-32768,-32768,-32768,
  1139. -32768,-32768,-32768,  6483,  6483,-32768,-32768,-32768,-32768,-32768,
  1140.     74,  8381,  8381,  9521,   656,   656,  1124,  1126,-32768,-32768,
  1141. -32768,-32768,   269,-32768,  1091,-32768,  1084,  1087,  1097,  1098,
  1142. -32768,  9544,  6483,   575,-32768,  1089,-32768,-32768,-32768,   818,
  1143. -32768,-32768,   509,   509,  7417,-32768,  1175,  1137,  1100,-32768,
  1144.   1141,-32768,  8124,  8381,-32768,  7237,-32768,  1146,-32768,-32768,
  1145.    629,-32768,   656,-32768,-32768,   656,  8982,  8982,  6573,-32768,
  1146. -32768,-32768,   765,  6663,  6663,-32768,-32768,  6483,-32768,  9521,
  1147.   9521,-32768,   831,   831,  6483,  6483,   801,  1102,  8729,-32768,
  1148. -32768,-32768,-32768,  6483,-32768,-32768,-32768,-32768,  8124,-32768,
  1149. -32768,-32768,-32768,-32768,-32768,  5674,-32768,-32768,  1109,   234,
  1150.   3239,  9567,  7237,-32768,-32768,  5168,    48,-32768,-32768,  1149,
  1151. -32768,  1150,-32768,-32768,-32768,  1160,  1163,-32768,-32768,-32768,
  1152. -32768,   282,  1123,-32768,  1127,   765,  7327,   518,   295,  5272,
  1153. -32768,   572,-32768,-32768,   296,-32768,  5376,-32768,  1214,  1168,
  1154. -32768,-32768,  6483,  6483,  8381,-32768,-32768,-32768,-32768,    37,
  1155. -32768,-32768,-32768,  8381,  1176,-32768,  1177,-32768,   765,   656,
  1156.   7237,-32768,-32768,-32768,  1147,   201,  1181,-32768,-32768,  6753,
  1157.   6753,-32768,-32768,  1143,-32768,  5764,  1148,-32768,-32768,   831,
  1158. -32768,  1158,  8381,  1214,  1183,  1214,  1151,  1152,-32768,   317,
  1159.   5480,-32768,  1198,-32768,  1156,   246,-32768,-32768,-32768,-32768,
  1160. -32768,-32768,-32768,  1153,-32768,  1254,  1208,  7327,  7327,  6483,
  1161.   1355,   765,-32768,   353,-32768,-32768,-32768,-32768,  1167,  1170,
  1162. -32768,  1271,  1219,-32768,-32768,-32768,-32768,  1281,  1282,-32768
  1163. };
  1164.  
  1165. static const short yypgoto[] = {-32768,
  1166.   1165,-32768,-32768,   958,     7,  1283,-32768,-32768,-32768,-32768,
  1167. -32768,-32768,-32768,   486,-32768,-32768,-32768,-32768,-32768,-32768,
  1168. -32768,  -773,  1169,  1174,-32768,-32768,-32768,-32768,  1166,-32768,
  1169. -32768,   478,   126,-32768,-32768,-32768,  4325,   -30,-32768,  1204,
  1170.    844,  -998,-32768,   -96,   162,-32768,   171,-32768,   153,   124,
  1171.   -980,-32768,  -480,   242,   564,   630,-32768,-32768,  -722,  3685,
  1172.   1316,  -262,  2309,  2833,   804,   159,   431,-32768,-32768,-32768,
  1173. -32768,  -278,-32768,  -110,   -90,-32768,   233,    34,  -210,    83,
  1174.     11,   -91,  -121,    -3,  1446,   -82,  1348,  -127,  -674,   329,
  1175. -32768,  -186,-32768,-32768,   180,-32768,-32768,-32768,-32768,-32768,
  1176.   1092,-32768,   634,-32768,   122,-32768,-32768,   821,   742,    14,
  1177. -32768,-32768,-32768,   526,  -285,    12,  1299,  1300,-32768,-32768,
  1178. -32768,-32768,-32768,  -131,-32768,   473,   686,-32768,   533,   394,
  1179.    469,  -411,-32768,-32768,-32768,-32768,-32768,-32768,   939,-32768,
  1180.    482,   829,   573,   857,  1683,  1544,  -371,-32768,  1375,     0,
  1181.      1,-32768,  4129,   -99,   646,-32768,  3274,-32768,-32768,  3935,
  1182.     -4,   198,  -327,  1336,  3574,   852,  -188,-32768,  1912,-32768,
  1183.  -1147,  -942,  -321,   101,-32768,   539,  -106,   -94,-32768,-32768,
  1184. -32768, -1132,  -932, -1108,-32768,-32768,-32768,-32768,-32768,-32768,
  1185. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1186. -32768,-32768,-32768,-32768,-32768,   -43,-32768,-32768,-32768,-32768,
  1187. -32768,  -421,    70,-32768,    69,-32768,  -369,  -132,-32768,-32768,
  1188.   -258,  1015,  -247,-32768,-32768,    60,   500,-32768,   127,-32768,
  1189.   -260
  1190. };
  1191.  
  1192.  
  1193. #define    YYLAST        9739
  1194.  
  1195.  
  1196. static const short yytable[] = {    66,
  1197.     46,   423,   465,   366,   673,   530,   321,    85,   314,   317,
  1198.     30,   586,    84,   553,    44,    85,    96,   638,   636,   103,
  1199.    103,   178,   103,   533,   350,   596,   915,   231,    66,   122,
  1200.     95,    97,   392,   400,   401,   349,   349,   351,   345,   149,
  1201.    554,    66,   955,   121,   360,  1107,  1212,    85,  1144,   409,
  1202.   1228,   556,    84,   830,    85,  1108,   502,   346,   502,     8,
  1203.    502,   164,  1111,   961,    88,   195,    85,   522,  1250,   194,
  1204.    830,   393,    85,    96,   599,    78,   309,   142,  1257,   651,
  1205.    424,   614,    85,   460,   165,   166,   290,   285,   286,   670,
  1206.    149,    85,     8,    85,    78,   309,   103,   194,   461,   307,
  1207.    103,   670,   420,   103,   103,    75,   100,  1259,    93,   554,
  1208.    347,   962,   100,  1269,    66,    46,   149,    66,   510,   600,
  1209.    556,   188,   831,    76,   601,   310,   615,  -699,   300,    44,
  1210.    426,   616,   361,  -699,   149,   149,   149,    82,  1272,  1295,
  1211.     73,    93,   100,   777,   310,  1144,  1299,  1089,  1311,  1260,
  1212.    577,   562,   522,  1033,   329,    93,   671,   602,   276,    21,
  1213.    149,    93,   693,   100,   617,   187,   709,   164,  1151,   557,
  1214.    294,   296,   100,   754,   164,   164,  1052,   175,    66,   414,
  1215.   1067,   276,  1219,   755,   337,   111,   750,    74,   103,   535,
  1216.   1049,    93,   340,   413,   422,  -103,    75,   756,   164,   327,
  1217.    751,   384,    -1,   510,    99,   867,   341,   360,   460,   653,
  1218.     21,   642,    93,   426,    76,   654,   398,  -229,   359,  1272,
  1219.   1272,    93,   674,   558,   511,    85,   433,   499,  1245,   694,
  1220.    752,  1048,   311,  1224,   512,    -2,   342,   593,   594,   159,
  1221.    160,   879,   164,   189,   513,    12,   328,   514,   515,   349,
  1222.    349,   595,   592,   530,     8,   366,   578,     8,   291,   295,
  1223.   1304,  -229,  -229,   192,   400,   401,    85,   315,    17,   675,
  1224.    509,   640,   433,   433,   524,  -224,   360,   510,   314,   317,
  1225.    149,   100,   192,   194,   424,  -124,  1074,  -230,   880,   870,
  1226.   1254,   164,   401,  1172,    85,   361,   360,   579,    75,   111,
  1227.    192,   126,  1305,    93,    21,  1326,   580,  1107,   103,   526,
  1228.   1098,   103,  1104,  1074,  1107,   103,    76,  1108,   534,    85,
  1229.     96,   693,   651,  1197,  1108,   189,   301,  1147,    21,   187,
  1230.     93,  -230,  -230,  1075,    95,    97,  1265,   599,   127,    89,
  1231.    458,   581,   754,   422,    77,  -225,   192,  1327,  1301,   894,
  1232.   1074,  1074,   755,   527,   100,   149,    66,   149,   149,   524,
  1233.   1182,   343,   708,    66,   361,   127,   756,    90,  1107,   149,
  1234.   1198,   149,  1074,   149,   149,   451,   164,   356,  1108,   811,
  1235.    149,   551,   600,  1266,   361,  -695,   149,   601,   566,   149,
  1236.    422,   100,   192,   606,    11,   610,   612,  1276,  1282,     7,
  1237.      8,    21,    85,    93,   422,   164,   164,  1342,   149,    66,
  1238.    186,    66,   414,   939,   937,   431,    85,   297,   298,  1321,
  1239.    602,  -285,   360,    99,   510,   432,   413,  -285,   456,   360,
  1240.    764,   510,  -699,   164,  -699,  -699,   117,    19,    21,   135,
  1241.     93,  -699,    85,    85,    85,    85,   660,   385,   386,    22,
  1242.    551,   387,   511,   499,  1343,   783,   860,   112,   766,   187,
  1243.   -286,   643,   512,  -699,  -699,  -699,  -286,  -699,   693,  -699,
  1244.    359,   189,   513,   804,   765,   514,   515,   820,   676,    26,
  1245.    192,   822,   118,   136,   137,   829,     7,   100,   805,   878,
  1246.    132,   586,    85,   133,   433,   388,   389,   349,   187,   784,
  1247.    785,   187,   767,   677,   192,   824,   433,   433,   100,   524,
  1248.    361,   424,   400,   360,  1180,   530,    66,   361,   553,   360,
  1249.    692,   821,   178,   695,    19,   823,   366,   465,   701,   702,
  1250.    703,   704,   705,   533,   651,  1091,    22,   315,   112,   112,
  1251.    750,   182,   276,   624,    99,   554,   718,   149,    85,   825,
  1252.    187,  1057,  1208,    84,   751,    21,   556,    93,   189,     7,
  1253.    503,  1273,   504,   287,   632,   164,    26,   360,   289,   431,
  1254.    881,   112,   422,   641,   -27,    13,    14,   -27,   747,   432,
  1255.   -224,     7,     8,   356,   752,   612,     7,     8,   715,   -27,
  1256.    394,   395,    78,    79,     7,   503,  1209,    19,   149,   149,
  1257.    842,   361,   318,    75,   -81,  1274,   842,   361,   456,    22,
  1258.    -81,   456,  -102,   696,   698,   319,   700,    75,   673,    19,
  1259.   -506,    76,   149,   149,    19,   149,  1077,    13,    14,   356,
  1260.    192,    22,    19,   240,   456,    76,    22,   234,   722,   505,
  1261.     21,  -225,    80,    81,    22,    85,   331,    21,   332,   422,
  1262.   1082,   366,   333,   164,   842,   361,   -80,   322,   426,   159,
  1263.    160,    26,   -80,   187,   744,    12,    26,     8,   338,    10,
  1264.    761,   301,   114,   433,    26,    12,   407,   356,   807,   792,
  1265.     13,    14,   422,   433,   433,   433,  1027,  1028,    17,  1028,
  1266.     15,   164,   360,   371,    16,   421,   360,   427,    17,   357,
  1267.     78,    79,   167,   168,   169,   430,   192,   694,   158,   159,
  1268.    160,    75,   360,   715,    21,    12,    93,   486,   487,   871,
  1269.   1123,   192,  1072,  1073,   873,   874,   385,  1174,   876,    76,
  1270.   1053,  1054,   170,  1056,   356,   428,   356,   356,    17,   314,
  1271.    317,   359,   429,    85,   436,   314,   317,   443,    21,   444,
  1272.     80,   171,   446,   114,   114,   360,  1153,  1154,   447,   334,
  1273.    448,   335,   356,   111,   433,   336,   433,   449,   356,   849,
  1274.   1170,   450,   404,    85,   405,   502,   694,   433,   406,    85,
  1275.    361,    66,    66,    66,   361,   541,   114,   539,   567,   944,
  1276.   1184,  1185,   542,   194,   544,   172,   173,   174,   545,    85,
  1277.    361,    85,   546,    78,   309,  1129,  1130,  1131,   112,   112,
  1278.    547,   528,     8,   563,   885,   886,   887,   111,   347,   568,
  1279.   -694,   569,   356,   570,   424,   571,   394,  1175,   385,  1181,
  1280.    914,   597,   149,   149,   149,   149,   598,  1216,   613,   149,
  1281.    842,   842,   842,   361,   622,   240,   529,  1336,  1337,    19,
  1282.    623,   792,   356,   310,   629,    70,   637,    85,   681,    21,
  1283.    718,    93,   682,    87,   439,   442,   359,   149,  1307,  1308,
  1284.    103,    98,    66,   414,    85,   104,   104,   686,   104,   422,
  1285.    422,   687,   422,   706,    70,   707,   551,   413,   483,   484,
  1286.    485,   486,   487,   100,   709,   104,   184,    70,   762,    13,
  1287.     14,   763,   776,    87,   778,   591,  -330,   780,   796,   797,
  1288.     98,   399,   159,   160,   433,   433,   806,   433,    12,   808,
  1289.    810,   812,    98,   813,   814,   815,   921,  1016,    98,  -330,
  1290.   -330,   819,  -330,   510,   356,    66,    66,   828,  1193,  1194,
  1291.     21,    17,    93,  1012,   852,   315,   104,    98,    66,   414,
  1292.    855,   635,   104,   862,   511,   963,   104,   856,   456,   104,
  1293.    104,   677,   857,   413,   512,     7,   100,   858,   861,    11,
  1294.     70,   866,   104,    70,   513,   872,   875,   514,   515,   877,
  1295.    149,    66,   149,   883,   882,  1156,   888,   889,   898,   642,
  1296.    104,   104,   104,   356,   149,   149,   892,   149,   315,   691,
  1297.    164,   893,   895,    19,   315,   111,   356,   896,   356,   694,
  1298.    897,   899,   900,    21,   901,    22,   104,   456,  1097,   902,
  1299.   1103,  -101,   905,   114,   114,    66,   414,    24,   904,   907,
  1300.   1043,  1011,   908,   909,    70,   112,   912,    25,   910,   192,
  1301.    413,   112,   911,   923,   104,    26,   926,   913,   925,   315,
  1302.     27,   927,   932,   933,     7,     8,   743,   934,   745,   746,
  1303.   1227,   938,   356,   948,   356,   830,   356,   942,     8,    92,
  1304.     10,    11,   554,   943,   354,   945,    12,   314,   317,   956,
  1305.   1003,    98,   104,  1340,  1125,  1126,  1043,  1005,  1156,   112,
  1306.    795,    15,    19,  1300,  1009,    16,  1018,   842,  1034,    17,
  1307.   1036,  1037,    21,  1090,    22,  -471,  1038,   138,  -471,  1039,
  1308.   1055,  1045,  1059,  1050,  1064,    21,   139,    93,  1051,  1060,
  1309.   1076,  1061,    98,  1065,  1063,  1068,   140,  1069,   104,   104,
  1310.     70,   422,   422,  1081,    26,   532,   104,  1070,  1084,   141,
  1311.   1085,   192,   780,  1086,   817,  1093,  1092,  1088,  1109,  1095,
  1312.     98,  1156,  1116,  -471,  1117,  1118,  -471,   355,  -471,  1132,
  1313.   1176,   590,  1122,  1143,   104,  1149,  1148,   104,  -471,  1163,
  1314.   1167,   104,   842,   842,   842,    98,  1169,  1171,  1199,   422,
  1315.   1189,  1195,   422,  1196,  1156,  1200,  -471,  -471,  1201,  1213,
  1316.     98,  -471,  1214,  1207,     8,   644,  1217,  1152,  1202,  1203,
  1317.   -471,  1225,  1215,  1241,  1261,  1262,  1137,  1138,  1139,  1140,
  1318.   1251,   104,    70,   104,   104,    70,   149,  1263,  1146,    70,
  1319.   1264,   645,  1285,  1289,  1267,   104,   646,   104,  1268,   104,
  1320.    104,  1298,  1074,   164,  1303,  1306,   104,  1341,  1317,   360,
  1321.   1331,    21,   104,    93,  1309,   104,     8,   863,  1314,  1312,
  1322.    114,  1161,  1319,  1320,  1252,  1323,   114,  1325,    98,  1168,
  1323.    849,   458,  1333,  1335,   104,    70,   382,    70,  1344,   112,
  1324.    112,  1345,    98,   645,  1347,   112,   112,   112,   864,  1346,
  1325.   1349,  1350,   323,   565,     5,   396,   422,   325,  -699,   950,
  1326.   -699,  -699,   326,    21,   344,    93,   957,  -699,    98,    98,
  1327.     98,    98,   305,   710,   114,  1206,  1211,  -699,  1232,  -699,
  1328.   -699,  1280,   768,  1162,  1100,   917,  -699,   884,  1240,  -699,
  1329.   -699,   383,  1132,  -699,   949,  -699,    85,   361,   928,   827,
  1330.    929,   123,   124,  1218,  1013,   865,   315,   111,  -699,  -699,
  1331.    397,   953,  -699,   356,  -699,  1030,  1066,    86,    98,   456,
  1332.    104,    48,   668,   749,  1218,  1218,  1029,   187,     8,    92,
  1333.     10,    11,   104,   104,  1339,    70,    12,    48,   799,   947,
  1334.   1296,   998,   794,  1316,  1318,     0,   187,   488,  1032,  1218,
  1335.     48,    15,   620,   532,   958,    16,   959,     0,   960,    17,
  1336.      0,   655,   656,   154,   479,   480,   481,   482,   483,   484,
  1337.    485,   486,   487,   104,    87,    21,   185,    93,     0,     0,
  1338.      0,     0,     0,   551,   489,   490,     0,     0,   229,   491,
  1339.    492,   493,   494,   278,    48,     0,     0,     0,     0,    19,
  1340.      0,     0,   657,     0,     0,   278,   278,     0,     0,    21,
  1341.    356,    22,   853,   154,  1297,     0,   278,     0,   658,     0,
  1342.      0,     0,     0,   139,   104,   104,    70,     0,     0,     0,
  1343.    722,   722,   794,   140,     0,     0,    48,     0,     0,   154,
  1344.      0,    26,     0,  1315,     0,     0,   659,     0,   104,   104,
  1345.      0,   104,     0,   363,   114,   114,     0,     0,     0,     0,
  1346.    114,   114,   114,     0,     0,     0,     8,    92,    10,    11,
  1347.      0,    98,     0,     0,    12,     0,   356,     0,     7,     8,
  1348.     70,     0,    11,   375,   377,   380,   228,     0,     0,    15,
  1349.      0,   277,     0,    16,     0,     0,     0,    17,     0,   104,
  1350.     48,     0,   112,   277,   277,     0,     0,     0,     0,   104,
  1351.    104,   104,     0,    21,   277,    93,    19,     0,     0,   510,
  1352.      0,     0,     0,     0,     0,     0,    21,     0,    22,     0,
  1353.      0,    94,     0,     0,     0,     0,   452,   101,   105,   453,
  1354.    603,   916,   454,     0,     0,     0,     0,   185,   462,     0,
  1355.    604,   362,     0,     0,     0,     0,     0,   501,    26,     0,
  1356.    513,     0,     0,   605,   515,     0,     0,     0,     0,    98,
  1357.      0,     0,     0,     0,     0,   278,     0,   112,   112,   112,
  1358.      0,     0,     0,     8,   230,    10,   184,     0,   229,   279,
  1359.    104,    12,   104,     0,     0,     0,   185,     0,   952,    98,
  1360.      0,   279,   279,   104,     0,    98,    15,   794,   794,   794,
  1361.     16,     0,   279,     0,    17,   532,   552,     0,     0,     0,
  1362.      0,   313,   316,     0,     0,    98,     0,    98,     0,     0,
  1363.     21,     0,    93,     0,     0,     0,     0,     0,   816,     0,
  1364.     98,    48,  1004,     0,     0,     0,     0,     0,     0,   364,
  1365.      0,     0,   374,   376,     0,     0,     0,     0,   104,   104,
  1366.    104,   104,     0,     0,     0,   104,   794,   794,   794,     0,
  1367.      0,     0,     0,   277,     0,     0,     0,     0,   154,     0,
  1368.      0,   185,     0,    98,     0,   552,   228,     0,     0,     0,
  1369.      0,     0,   854,   104,  1041,  1044,   104,     0,    70,     0,
  1370.     98,     0,     0,   859,     0,   363,   481,   482,   483,   484,
  1371.    485,   486,   487,     0,   362,     0,     0,   114,   625,     0,
  1372.    626,   193,   375,   377,     0,     0,     0,     0,     0,     0,
  1373.    699,   154,  1243,    48,     0,   639,     0,     0,   678,     0,
  1374.    104,   104,     0,   104,     0,     0,     0,     7,     8,     0,
  1375.      0,  1044,     0,     0,     0,   278,     0,   665,   278,     0,
  1376.      0,   794,   794,   278,   678,   678,   678,   678,   320,     0,
  1377.      0,   279,     0,     0,    70,     0,     0,   278,     0,     0,
  1378.      0,   278,     0,   362,   230,    19,     0,   352,   510,     0,
  1379.      0,     0,   114,   114,   114,    21,     0,    22,  1294,     0,
  1380.      0,     0,   391,   362,     0,     0,   104,    70,   104,   603,
  1381.      0,     0,   364,   278,   229,     0,     0,     0,     0,   604,
  1382.    104,   104,     0,   104,     0,  1136,     0,    26,     0,   513,
  1383.   1141,   552,   605,   515,     0,     0,   277,     0,   363,     0,
  1384.      0,     0,     0,     0,     6,     0,     7,     8,     9,    10,
  1385.     11,    70,     0,   277,     0,    12,   277,     0,     0,     0,
  1386.      0,   277,   277,   277,   277,   277,     0,     0,    13,    14,
  1387.     15,     0,   954,     0,    16,   277,     0,     0,    17,   277,
  1388.      0,   364,    18,     0,    19,     0,     0,     0,    20,     0,
  1389.      0,   627,   628,     0,    21,     0,    22,     0,     0,    23,
  1390.      0,   364,     0,     0,  1186,  1187,     0,     0,    24,     0,
  1391.      0,   277,   228,     0,     0,     0,     0,     0,    25,     0,
  1392.      0,  1010,   552,   794,     0,     0,    26,     0,   363,   362,
  1393.   1017,    27,     0,  1205,   279,     0,   362,    28,    29,  1031,
  1394.      0,     0,     0,     7,     8,     0,     0,   375,   377,   380,
  1395.      0,   279,     0,     0,   279,   380,     0,     0,     0,   279,
  1396.    279,   279,   279,   279,     0,     0,     0,     0,  -511,     0,
  1397.      0,   625,   626,   279,   639,     0,   552,   279,  1233,     0,
  1398.      0,    19,     0,  -511,  -511,  1238,  1239,     0,     0,     0,
  1399.   -511,    21,     0,    22,  1244,     0,  1096,     0,   794,   794,
  1400.    794,     0,  -511,   380,     0,   139,     0,     0,     0,   279,
  1401.    230,     0,     0,  -511,  -511,   140,  -511,     0,  -511,   100,
  1402.    362,     0,   424,    26,   769,   771,   362,   364,   141,     0,
  1403.      0,     0,     0,   630,   364,     0,     0,     0,     0,   633,
  1404.      0,     0,   104,     0,     0,   924,  -511,  -511,     0,     0,
  1405.   -511,  -511,     0,  1292,  1293,     0,     0,     0,     0,   510,
  1406.   -511,     0,     0,     0,     0,   678,    21,     0,    93,   918,
  1407.      0,   452,   453,     0,   362,  1119,  1120,     0,     0,     0,
  1408.    511,     0,     0,   688,   689,     0,   690,     0,  1127,  1128,
  1409.    512,     0,     0,     0,     0,   678,     0,     0,     0,     0,
  1410.    513,   552,     0,   514,   515,   363,     8,    92,    10,    11,
  1411.      0,     0,     0,     0,    12,     0,   837,   838,   364,     0,
  1412.   1338,   552,     0,   951,   364,     0,     0,     0,     0,    15,
  1413.    452,   453,     0,    16,     0,     0,     0,    17,     0,     0,
  1414.      0,     0,     0,     0,     0,     0,     0,     0,     0,   987,
  1415.      0,     0,    98,    21,     0,    93,     0,     0,   519,   523,
  1416.    525,     0,     0,   277,   363,     0,     0,     0,     0,   781,
  1417.    782,     0,   364,     0,   781,   452,   453,     0,   278,     0,
  1418.      0,   625,   626,   375,   377,  1192,     7,   100,   639,   375,
  1419.    377,   380,     0,   277,    48,     0,   678,     0,     0,   362,
  1420.      0,     0,     0,   362,     0,     0,     0,     0,     0,     0,
  1421.   1058,     0,     0,     0,     0,     0,  1025,     0,     0,   362,
  1422.      0,     0,     0,     0,    19,   452,   453,     0,     0,     0,
  1423.      0,     0,     0,     0,    21,     0,    22,     0,     0,     0,
  1424.      0,   608,     0,   519,   523,   525,     0,     0,   108,   835,
  1425.    836,  1234,  1235,     0,  1236,  1237,     0,     0,   109,   844,
  1426.      0,   279,   362,     0,     0,   851,    26,     0,     0,     0,
  1427.     48,    27,     0,     0,     0,     0,   277,     0,     0,     0,
  1428.      0,   410,     0,     7,     8,    92,    10,    11,     0,     0,
  1429.      0,   279,    12,     0,   277,     0,     0,   364,     0,   769,
  1430.    771,   364,     0,   154,     0,   987,     0,    15,     0,   868,
  1431.      0,    16,   987,     0,     0,    17,  -423,   364,     0,     7,
  1432.    100,    19,     0,   184,     0,     0,     0,     0,     7,   100,
  1433.      0,    21,    11,    22,     0,     0,   672,     0,     0,     0,
  1434.    411,     0,     0,   625,   626,    24,   639,    48,     0,     0,
  1435.      0,     0,   999,  1000,   268,    25,     0,    19,   999,  1000,
  1436.    364,  1313,     0,    26,     0,     0,    19,    21,    27,    22,
  1437.      0,     0,     0,     0,   279,     0,    21,   268,    22,     0,
  1438.      0,    24,     0,  -423,     0,     0,     0,     0,  1019,  1020,
  1439.    108,    25,   279,   772,     0,   774,     0,     0,   987,    26,
  1440.    109,     0,   774,     0,    27,     0,   919,   920,    26,   922,
  1441.      0,     0,     0,    27,   358,     0,     0,   410,     0,     7,
  1442.      8,    92,    10,    11,     0,     0,    19,     0,    12,     0,
  1443.      0,     0,     0,   523,     0,   936,    21,     0,    22,     0,
  1444.      0,     0,     0,    15,     0,  1021,   380,    16,     0,     0,
  1445.    139,    17,  -422,   769,   771,     0,     0,    19,     0,     0,
  1446.    140,     0,   452,   453,     0,     0,     0,    21,    26,    22,
  1447.      0,     0,   987,   141,     0,     0,   411,     0,     0,     0,
  1448.   1220,    24,     0,   987,     0,   772,   774,     0,     0,     0,
  1449.      0,    25,   774,     0,     0,  1002,   278,     0,     0,    26,
  1450.      0,  1220,  1220,     0,    27,     0,     0,  1006,  1007,  1008,
  1451.      0,     0,     0,     0,     0,     0,     0,     0,     0,  -422,
  1452.      0,   375,   377,   380,     0,     0,  1220,     0,     0,     0,
  1453.      0,     0,     0,   987,     0,     0,     0,   459,     0,     0,
  1454.    987,     0,     8,   987,    10,    11,     0,     0,     0,     0,
  1455.     12,     0,     0,     0,     7,     8,   158,   159,   160,   523,
  1456.      0,     0,     0,    12,   987,    15,     0,   987,     0,    16,
  1457.      0,     0,     0,    17,   987,     0,     0,   410,   228,     7,
  1458.      8,    92,    10,    11,     0,  1062,    17,     0,    12,    21,
  1459.      0,    93,    19,     0,   277,   510,     0,     0,   987,   228,
  1460.    228,     0,    21,    15,    22,     0,     0,    16,     0,     0,
  1461.      0,    17,  -424,   987,     0,     0,   139,    19,     0,   589,
  1462.    358,     0,     0,     0,   228,     0,   140,    21,   987,    22,
  1463.      0,     0,   672,     0,    26,     0,   411,     0,     0,  1102,
  1464.      0,    24,     0,     0,     0,   987,   987,     0,   552,     0,
  1465.    930,    25,   931,     0,     0,     0,     0,     0,     0,    26,
  1466.      0,     0,     0,   935,    27,     0,   358,     0,   772,   774,
  1467.   1121,     0,     0,     0,     0,     0,   230,     0,     0,  -424,
  1468.      0,     0,     0,     0,     0,     8,     0,    10,    11,   652,
  1469.    627,   628,   279,    12,     0,     0,     0,   230,   230,     0,
  1470.      0,     0,     0,     0,     0,     0,     0,     0,    15,     0,
  1471.      0,     0,    16,     0,   358,  1150,    17,     0,   930,   931,
  1472.      0,   772,   230,     0,     0,   935,     0,   772,   774,     7,
  1473.      8,     0,    21,   184,    93,   495,     0,     0,   268,     0,
  1474.      0,   589,     0,     0,   719,   720,   362,   724,   725,   726,
  1475.    727,   728,   729,   730,   731,   732,   733,   734,   735,   736,
  1476.    737,   738,   739,   740,   741,   742,     0,    19,     0,   496,
  1477.    510,   358,     0,   358,   358,     0,     0,    21,     0,    22,
  1478.      7,     8,    92,    10,    11,     0,     0,   354,     0,    12,
  1479.      0,   603,   100,     0,   159,   160,     0,     0,     0,   358,
  1480.     12,   604,     0,     0,    15,   358,    42,     0,    16,    26,
  1481.      0,   513,    17,     0,   605,   515,     0,     0,    19,     0,
  1482.    801,   803,   772,    17,     0,     0,    42,    42,    21,   110,
  1483.     22,     0,   510,     0,     0,    42,     0,     0,     0,    21,
  1484.      0,    93,   378,     0,   364,     0,    42,     0,    42,     0,
  1485.      0,     0,   379,   511,     0,     0,     0,     0,     0,   358,
  1486.     26,     0,     0,   512,     0,   141,   589,     0,   190,     0,
  1487.    355,     0,     0,   513,     0,     0,   521,   515,     0,     0,
  1488.    930,   931,     6,   935,     7,     8,     9,    10,    11,   358,
  1489.      0,     0,     0,    12,     0,     0,     0,    42,     0,     0,
  1490.    589,     0,     0,    42,     0,   190,     0,    42,    15,     0,
  1491.    110,   110,    16,     0,     0,     0,    17,     0,     0,     0,
  1492.      0,    42,    19,    42,    42,     0,   324,     0,     0,     0,
  1493.      0,     0,    21,     0,    22,     0,   869,    23,     0,     0,
  1494.      0,    42,    42,   110,     0,     0,    24,     0,     0,     0,
  1495.      0,   190,     0,     0,     0,     0,    25,     0,     0,     0,
  1496.      0,     0,     0,     0,    26,     0,     0,    42,     0,    27,
  1497.      0,   358,     0,     0,     0,    28,   721,     0,     7,     8,
  1498.      0,    10,   437,   233,   234,    42,   235,    12,     0,     0,
  1499.      0,     0,   903,     0,     0,    42,     0,     0,     0,     0,
  1500.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1501.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1502.      0,   245,   246,   247,   248,   249,    21,     0,    22,   589,
  1503.    358,     0,     0,     0,     0,  -656,     0,   250,     0,     0,
  1504.    251,     0,     0,   358,     0,   358,     0,     0,   252,   253,
  1505.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1506.      0,     0,     0,   258,     0,     0,     0,   259,     0,     0,
  1507.      0,     0,     0,     0,   946,     0,     0,   506,     0,   260,
  1508.      0,     0,     0,     0,     0,   190,   589,    42,     0,     7,
  1509.      8,     0,    10,   437,   233,   234,     0,   235,    12,   358,
  1510.      0,   358,     0,   358,     0,     0,     0,     0,     0,     0,
  1511.      0,     0,     0,    15,   236,    42,     0,    16,    42,   239,
  1512.      0,    17,    42,   240,   241,     0,   242,    19,   243,   244,
  1513.    589,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  1514.      0,     0,     0,     0,  1014,  1015,     0,     0,   250,     0,
  1515.      0,   251,     0,     0,     0,     0,     0,  1019,   100,   252,
  1516.    253,   254,    42,    42,    42,    42,     0,   255,   256,   257,
  1517.     42,     0,     0,     0,   438,     0,    42,     0,    42,     0,
  1518.    110,   110,   589,   589,     0,     0,  1046,    42,     0,     0,
  1519.    260,     0,     0,    42,     0,    19,    42,     0,   410,     0,
  1520.      7,     8,    92,    10,    11,    21,     0,    22,     0,    12,
  1521.      0,     7,     8,     0,  1021,    42,    42,     0,    42,    24,
  1522.      0,     0,     0,     0,    15,     0,     0,     0,    16,    25,
  1523.      0,     0,    17,  -425,     0,     0,     0,    26,    19,   589,
  1524.      0,     0,    27,     0,     0,     0,     0,    64,    21,    19,
  1525.     22,  1083,     0,     0,     7,     8,     0,   411,    11,    21,
  1526.      0,    22,    24,     0,     0,     0,     0,    64,    64,     0,
  1527.    115,     0,    25,   139,     0,     0,    64,     0,     0,     0,
  1528.     26,     0,     0,   140,     0,    27,     0,    64,     0,    64,
  1529.      0,    26,    19,     0,     0,   510,   141,     0,     0,  1124,
  1530.   -425,     0,    21,     0,    22,     7,     8,    92,    10,    11,
  1531.      0,   506,   354,   589,    12,     0,   839,     0,   589,     0,
  1532.   1142,     0,     0,   791,     0,     0,   840,     0,     0,    15,
  1533.      0,     0,     0,    16,    26,     0,   513,    17,    64,   605,
  1534.    515,     0,     0,    19,    64,     0,   510,     0,    64,     0,
  1535.      0,   115,   115,    21,    42,    22,     0,     0,     0,     0,
  1536.      0,     0,    64,     0,    64,    64,     0,   839,     0,     0,
  1537.      0,     8,     0,    10,    11,     0,     0,   840,     0,    12,
  1538.    358,     0,    64,    64,   115,    26,     0,   513,     0,     0,
  1539.    605,   515,   589,   589,    15,   355,     0,     0,    16,     0,
  1540.   1190,  1191,    17,     0,     0,    42,    42,   110,    64,     0,
  1541.      0,     0,     0,   848,     0,     0,     0,     0,    21,     0,
  1542.     93,   589,     0,     0,     0,     0,    64,     0,     0,    42,
  1543.     42,     0,    42,     0,     0,     0,    64,     0,     0,     0,
  1544.      0,     0,  1222,   476,   477,   478,   479,   480,   481,   482,
  1545.    483,   484,   485,   486,   487,   748,     0,   587,     0,   711,
  1546.    712,   110,    10,   437,   233,   234,   589,   235,    12,     0,
  1547.      0,     0,     0,   589,   589,     0,     0,   358,     0,     0,
  1548.      0,     0,   589,    15,   236,   237,   238,    16,     0,   239,
  1549.      0,    17,     0,   240,   241,   791,   242,    19,   243,   244,
  1550.      0,     0,   245,   246,   247,   248,   249,    21,     0,   713,
  1551.    588,     0,     0,     0,     7,     8,     0,     0,   250,     0,
  1552.      0,   251,     0,     0,     0,     0,     0,   531,    64,   252,
  1553.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1554.      0,   589,   589,   358,   258,   714,     0,     0,   259,     0,
  1555.      0,     0,    19,     0,     0,     0,    64,     0,     0,    64,
  1556.    260,     0,    21,    64,    22,     0,     0,     0,     0,     0,
  1557.    116,     0,     0,     0,     0,     0,   378,     0,     0,     0,
  1558.      0,     0,   585,     0,     0,     0,   379,   150,   791,   791,
  1559.      0,     0,     0,     0,    26,     0,     0,     0,     0,   141,
  1560.      0,     0,     0,    64,    64,    64,    64,     0,   589,     0,
  1561.      0,    64,     0,     0,     0,     0,     0,    64,     0,    64,
  1562.      0,   115,   115,     0,     0,     0,     0,     0,    64,     0,
  1563.      0,     0,     0,     0,    64,     0,     0,    64,   150,    42,
  1564.     42,   110,   110,     0,   190,     0,    42,   848,   848,   848,
  1565.      0,   116,   116,     0,     0,     0,    64,    64,     0,    64,
  1566.      0,     0,     0,     0,   150,     0,     0,     0,     0,     0,
  1567.      0,     0,     0,     0,    42,     0,     0,    42,     0,    42,
  1568.      0,     0,   150,   150,   381,     0,     0,     0,     0,     0,
  1569.      0,     0,   791,   791,     0,  1105,     0,   966,   967,    92,
  1570.     10,   232,   233,   234,     0,   235,    12,   968,   150,   969,
  1571.    970,   971,   972,   973,   974,   975,   976,   977,   978,    13,
  1572.     14,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1573.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1574.    245,   246,   247,   248,   249,    21,   190,   979,   347,     0,
  1575.    980,     0,     0,     0,     0,    42,   250,     0,     0,   251,
  1576.      0,     0,     0,     0,   793,     0,     0,   252,   253,   254,
  1577.      0,     0,     0,     0,   434,   255,   256,   257,     0,     0,
  1578.      0,     0,   258,     0,   981,     0,   259,    42,    42,    42,
  1579.      0,     0,     0,     0,     0,    64,     0,  1106,   260,     0,
  1580.      0,    42,    42,     0,    42,     7,     8,     0,     0,    11,
  1581.      0,     8,    92,    10,    11,     0,     0,   354,     0,    12,
  1582.    518,   518,   518,     0,     0,     0,     0,     0,   150,     0,
  1583.      0,     0,    42,     0,    15,     0,     0,     0,    16,     0,
  1584.      0,     0,    17,    19,     0,     0,    64,    64,   115,     0,
  1585.      0,   510,     0,    21,   850,    22,     0,     0,    21,     0,
  1586.     93,     0,     0,     0,     0,     0,     0,   139,     0,     0,
  1587.     64,    64,   511,    64,     0,     0,     0,   140,     0,     0,
  1588.      0,     0,   512,     0,     0,    26,     0,     0,     0,     0,
  1589.    141,     0,   513,     0,     0,   514,   515,     0,     0,     0,
  1590.    355,     0,   115,   607,   848,   607,   607,   518,     0,   120,
  1591.      0,     7,     8,    92,    10,    11,     0,   150,     0,   150,
  1592.     12,   381,   381,     0,     0,     0,     7,     8,   150,     0,
  1593.    424,   516,   516,   516,   150,    15,   793,   150,     0,    16,
  1594.      0,     0,     0,    17,     0,     0,     0,     0,   148,    19,
  1595.      0,     0,     0,     0,     0,     0,   150,     0,     0,    21,
  1596.      0,    22,     0,     0,    19,     0,     0,   510,     0,     0,
  1597.    191,     0,     0,    24,    21,     0,    22,     0,     0,   848,
  1598.    848,   848,     0,    25,     0,     0,     7,   100,   603,   191,
  1599.    424,    26,     0,     0,     0,     0,    27,     0,   604,   148,
  1600.      0,     0,     0,     0,     0,     0,    26,     0,   513,     0,
  1601.      0,   605,   515,     0,   516,     0,   516,   516,   516,     0,
  1602.      0,     0,     0,    42,    19,   148,     0,     0,     0,   793,
  1603.    793,     0,     0,     0,    21,     0,    22,   531,     0,     0,
  1604.      0,     0,   757,   148,   148,   148,     0,     0,    24,     0,
  1605.      0,     0,     0,   390,   518,   518,     0,   518,    25,     0,
  1606.      0,     0,   585,     0,   518,     0,    26,     0,     0,   148,
  1607.      0,    27,     0,     0,     0,     0,     0,     0,     0,     0,
  1608.     64,    64,   115,   115,     0,     0,     0,    64,   850,   850,
  1609.    850,     0,     0,     0,     0,   607,     0,     0,     0,   191,
  1610.      0,     0,    62,     0,     0,     0,     0,     0,     0,     0,
  1611.      0,     0,     0,     0,     0,    64,     0,     0,    64,     0,
  1612.     64,     0,   102,   106,     0,     0,     0,   100,     0,   159,
  1613.    160,   125,     0,   793,   793,    12,     0,     0,     0,     0,
  1614.      0,     0,     0,     0,   157,     0,   607,   607,   843,     0,
  1615.      0,     0,     0,     0,   843,     0,     0,     0,    17,     0,
  1616.      0,     0,     0,     0,     0,   516,   516,   510,   516,     0,
  1617.    150,   150,     0,   150,    21,   790,    93,     0,     8,   151,
  1618.     10,   152,     0,     0,     0,     0,    12,   191,   511,   148,
  1619.      0,     0,     0,     0,     0,     0,    64,     0,   512,   306,
  1620.      0,    15,   381,   308,     0,    16,   516,     0,   513,    17,
  1621.      0,   514,   515,     0,     0,     0,     0,    62,     0,     0,
  1622.    330,   518,     7,     8,     0,    21,   184,    93,    64,    64,
  1623.     64,   434,   434,   434,     0,     0,     0,   102,   106,     0,
  1624.      0,     0,    64,    64,     0,    64,     0,     0,     0,     0,
  1625.      0,     0,     0,     0,     0,     0,     0,   516,   516,   516,
  1626.     19,     0,     0,     0,   148,   790,   148,   148,     0,     0,
  1627.     21,     0,    22,    64,     0,     0,     0,     0,   148,     0,
  1628.    148,   419,   148,   148,   139,     0,     7,     8,     0,   148,
  1629.     11,   425,     0,     0,   140,   148,     0,     0,   148,     0,
  1630.      0,     0,    26,     0,     0,     0,    83,   141,     0,     0,
  1631.      0,     0,   518,     0,   518,     0,     0,   148,    83,    83,
  1632.      0,    83,     0,     0,    19,   518,     0,     0,     0,   518,
  1633.    518,   518,   516,     0,    21,     0,    22,     0,     0,     0,
  1634.      0,     0,     0,     0,     0,   850,   177,     0,   378,     0,
  1635.      0,     0,     0,     0,     0,     0,     0,     0,   379,     0,
  1636.      0,     0,     0,     0,     0,     0,    26,     0,     0,     0,
  1637.      0,   141,     0,     0,     0,     0,     0,     0,     0,     0,
  1638.    607,   607,   843,   843,     0,     0,     0,   607,   843,   843,
  1639.    843,     0,     0,     0,     0,    83,     0,    83,    83,    83,
  1640.      0,     0,    83,    83,     0,     7,     8,     0,     0,   424,
  1641.      0,   559,     0,     0,   560,   150,     0,     0,   561,     0,
  1642.    850,   850,   850,   516,     0,   516,     0,     0,   191,     0,
  1643.      0,     0,     0,     0,     0,     0,   516,     0,     0,     0,
  1644.    790,   790,   790,    19,     0,     0,     0,     0,     0,     0,
  1645.      0,     0,     0,    21,     0,    22,   148,     0,     0,   609,
  1646.      0,     0,   757,   757,    64,   757,   619,   139,     0,     0,
  1647.      0,     0,   306,     0,   308,     0,     0,   140,     0,     0,
  1648.      0,     0,     0,   518,   518,    26,     0,    83,     0,   425,
  1649.    141,   516,   516,   516,   516,     0,     0,     0,   516,   790,
  1650.    790,   790,     0,     0,     0,     0,     0,   148,   148,   841,
  1651.      0,   666,   669,     0,   419,   841,     0,     0,     0,     0,
  1652.   -304,     8,  -304,    10,   184,    83,     0,     0,   150,    12,
  1653.    150,   148,   148,     0,   148,     0,     0,     0,     0,     0,
  1654.      0,     0,   607,   607,    15,   607,     0,     0,    16,     0,
  1655.      0,     0,    17,     0,     0,     0,     0,     0,  -304,     0,
  1656.      0,   510,     0,   841,     0,     0,     0,     0,    21,    83,
  1657.     93,    83,    83,     0,     0,     0,     0,     0,     0,     0,
  1658.      0,     0,   511,     0,     0,     0,     0,     0,     0,     0,
  1659.      0,     0,   512,     0,   790,   790,     0,     0,     0,     0,
  1660.   -304,    83,   513,     0,     0,   514,   515,    83,     0,     0,
  1661.     83,     0,     0,     0,    83,   471,   472,   473,   474,   475,
  1662.    476,   477,   478,   479,   480,   481,   482,   483,   484,   485,
  1663.    486,   487,   353,     0,     7,     8,    92,    10,   232,   233,
  1664.    234,   354,   235,    12,     0,   381,     0,     0,     0,     0,
  1665.      0,     0,     0,   516,   516,     0,   516,     0,    15,   236,
  1666.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1667.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1668.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  1669.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1670.      0,   102,   106,     0,   252,   253,   254,     0,     0,     0,
  1671.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1672.    381,   381,   381,   259,   355,   559,   560,    83,   561,     0,
  1673.      0,     0,     0,  -666,     0,   260,     0,     0,     0,     0,
  1674.      0,   148,   148,   148,   148,     0,  1001,     0,   148,   841,
  1675.    841,   841,     0,     0,     0,     0,     0,     0,     0,     0,
  1676.      0,     0,     0,     0,   150,     0,     0,     0,     0,     0,
  1677.      0,     0,     0,     0,     0,     0,   148,     0,     0,     0,
  1678.      0,   455,     0,     7,     8,    92,    10,   232,   233,   234,
  1679.    354,   235,    12,    83,     0,     0,     0,     0,     0,     0,
  1680.      0,     0,     0,    83,     0,    83,    83,    15,   236,   237,
  1681.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  1682.    242,    19,   243,   244,   510,     0,   245,   246,   247,   248,
  1683.    249,    21,     0,    22,  -237,     0,     0,     0,     0,     0,
  1684.      0,     0,   250,     0,     0,   940,     0,   177,   191,     0,
  1685.      0,     0,     0,   252,   253,   941,     0,     0,     0,     0,
  1686.      0,   255,   256,   257,     0,   513,     0,     0,   788,   515,
  1687.      0,     0,   259,   355,     0,     0,     7,     8,   158,   159,
  1688.    160,     0,     0,     0,   260,    12,     0,     0,     0,   148,
  1689.      0,   148,     0,     0,     0,     0,     0,     0,     0,     0,
  1690.      0,     0,     0,   148,   148,     0,   148,     0,    17,     0,
  1691.      0,     0,     0,     0,    19,     0,     0,   510,     0,     0,
  1692.      0,     0,     0,     0,    21,     0,    22,     0,     0,     0,
  1693.      0,     0,     0,     0,     0,   306,   308,     0,   603,     0,
  1694.      0,     0,   425,     0,     0,     0,     0,     0,   604,     0,
  1695.      0,     0,     0,     0,     0,     0,    26,     0,   513,     0,
  1696.      0,   611,   515,     0,     0,     0,     0,     0,     0,     0,
  1697.   1026,     0,    83,  1026,     0,   419,     0,     0,     0,     0,
  1698.      0,     0,    83,    83,    83,     0,   455,     0,     7,     8,
  1699.     92,    10,   232,   233,   234,   354,   235,    12,     0,     0,
  1700.      0,     0,     0,     0,     0,     0,   841,     0,     0,     0,
  1701.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1702.     17,     0,   240,   241,     0,   242,    19,   243,   244,   510,
  1703.      0,   245,   246,   247,   248,   249,    21,     0,    22,  -237,
  1704.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1705.    845,   419,     0,     0,  1164,     0,     0,     0,   252,   253,
  1706.    846,     0,     0,    83,     0,    83,   255,   256,   257,     0,
  1707.    513,     0,     0,   847,   515,     0,    83,   259,   355,     0,
  1708.      0,   841,   841,   841,  1101,     0,     0,     0,     0,   260,
  1709.      0,     0,     0,     0,     0,     0,     0,   559,   560,     0,
  1710.    561,   466,   467,   468,  1165,   469,   470,   471,   472,   473,
  1711.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  1712.    484,   485,   486,   487,     0,   148,     0,     0,   419,     0,
  1713.      0,     0,     0,     0,     0,     0,     0,     0,  1255,     0,
  1714.    966,   967,    92,    10,   232,   233,   234,     0,   235,    12,
  1715.    968,     0,   969,   970,   971,   972,   973,   974,   975,   976,
  1716.    977,   978,    13,    14,    15,   236,   237,   238,    16,    83,
  1717.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  1718.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  1719.    979,   347,     0,   980,     0,     0,     0,     0,     0,   250,
  1720.      0,     0,   251,     0,     0,     0,     0,     0,     0,     0,
  1721.    252,   253,   254,    83,    83,     0,    83,     0,   255,   256,
  1722.    257,     0,     0,     0,     0,   258,     0,   981,     0,   259,
  1723.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1724.   1256,   260,  1277,     0,   966,   967,    92,    10,   232,   233,
  1725.    234,     0,   235,    12,   968,     0,   969,   970,   971,   972,
  1726.    973,   974,   975,   976,   977,   978,    13,    14,    15,   236,
  1727.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1728.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1729.    248,   249,    21,     0,   979,   347,     0,   980,     0,     0,
  1730.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1731.      0,     0,     0,     0,   252,   253,   254,     0,     0,     0,
  1732.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1733.      0,   981,     0,   259,     0,     0,     0,     0,     0,     0,
  1734.      0,     0,     0,     0,  1278,   260,  1277,     0,   966,   967,
  1735.     92,    10,   232,   233,   234,     0,   235,    12,   968,     0,
  1736.    969,   970,   971,   972,   973,   974,   975,   976,   977,   978,
  1737.     13,    14,    15,   236,   237,   238,    16,     0,   239,     0,
  1738.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1739.      0,   245,   246,   247,   248,   249,    21,     0,   979,   347,
  1740.      0,   980,     0,     0,     0,     0,     0,   250,     0,     0,
  1741.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1742.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1743.      0,     0,     0,   258,     0,   981,     0,   259,     0,     0,
  1744.      0,     0,     0,     0,     0,     0,     0,     0,  1283,   260,
  1745.   1277,     0,   966,   967,    92,    10,   232,   233,   234,     0,
  1746.    235,    12,   968,     0,   969,   970,   971,   972,   973,   974,
  1747.    975,   976,   977,   978,    13,    14,    15,   236,   237,   238,
  1748.     16,     0,   239,     0,    17,     0,   240,   241,     0,   242,
  1749.     19,   243,   244,     0,     0,   245,   246,   247,   248,   249,
  1750.     21,     0,   979,   347,     0,   980,     0,     0,     0,     0,
  1751.      0,   250,     0,     0,   251,     0,     0,     0,     0,     0,
  1752.      0,     0,   252,   253,   254,     0,     0,     0,     0,     0,
  1753.    255,   256,   257,     0,     0,     0,     0,   258,     0,   981,
  1754.      0,   259,     0,     0,     0,     0,     0,     0,     0,     0,
  1755.      0,     0,  1322,   260,   965,     0,   966,   967,    92,    10,
  1756.    232,   233,   234,     0,   235,    12,   968,     0,   969,   970,
  1757.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1758.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1759.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1760.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1761.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1762.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1763.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1764.      0,   258,     0,   981,  1249,   259,   966,   967,    92,    10,
  1765.    232,   233,   234,     0,   235,    12,   968,   260,   969,   970,
  1766.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1767.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1768.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1769.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1770.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1771.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1772.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1773.      0,   258,     0,   981,  1310,   259,   966,   967,    92,    10,
  1774.    232,   233,   234,     0,   235,    12,   968,   260,   969,   970,
  1775.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1776.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1777.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1778.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1779.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1780.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1781.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1782.      0,   258,     0,   981,   634,   259,     7,     8,    92,    10,
  1783.    232,   233,   234,   354,   235,    12,     0,   260,     0,     0,
  1784.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1785.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1786.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1787.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  1788.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1789.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1790.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1791.      0,   258,     0,     0,     0,   259,   355,     0,     0,     0,
  1792.      0,     0,     0,     0,     0,  -666,   587,   260,   711,   712,
  1793.      0,    10,   437,   233,   234,     0,   235,    12,   474,   475,
  1794.    476,   477,   478,   479,   480,   481,   482,   483,   484,   485,
  1795.    486,   487,    15,   236,   237,   238,    16,     0,   239,     0,
  1796.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1797.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1798.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1799.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1800.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1801.      0,     0,     0,   258,   714,     0,   587,   259,   711,   712,
  1802.      0,    10,   437,   233,   234,     0,   235,    12,   826,   260,
  1803.      0,     0,     0,     0,  1042,     0,     0,     0,     0,     0,
  1804.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1805.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1806.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1807.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1808.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1809.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1810.      0,     0,     0,   258,     0,     0,   587,   259,   711,   712,
  1811.      0,    10,   437,   233,   234,     0,   235,    12,  -384,   260,
  1812.      0,     0,     0,     0,  1042,     0,     0,     0,     0,     0,
  1813.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1814.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1815.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1816.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1817.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1818.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1819.      0,     0,     0,   258,     0,     0,  1158,   259,     7,     8,
  1820.     92,    10,   232,   233,   234,     0,   235,    12,  1071,   260,
  1821.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1822.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1823.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1824.      0,   245,   246,   247,   248,   249,    21,     0,    22,  1159,
  1825.      0,  1160,     0,     0,     0,     0,     0,   250,     0,     0,
  1826.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1827.    254,     0,     0,     0,     0,     0,   255,   256,   257,   196,
  1828.      0,     0,     8,   258,    10,    11,     0,   259,     0,     0,
  1829.     12,     0,     0,     0,     0,     0,     0,     0,     0,   260,
  1830.      0,     0,     0,     0,     0,    15,     0,     0,     0,    16,
  1831.      0,     0,     0,    17,     0,   197,   198,     0,     0,     0,
  1832.      0,     0,   199,     0,     0,     0,     0,     0,     0,    21,
  1833.      0,    93,     0,   200,     0,   201,   202,   203,     0,   204,
  1834.    205,   206,   207,   208,   209,   210,   211,   212,   213,   214,
  1835.    215,   216,   217,   218,   219,   220,   221,     0,     0,   222,
  1836.    223,   224,     0,   455,   225,     7,     8,   226,    10,   232,
  1837.    233,   234,     0,   235,    12,     0,     0,     0,     0,     0,
  1838.      0,     0,   227,     0,     0,     0,     0,     0,     0,    15,
  1839.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1840.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1841.    247,   248,   249,    21,     0,    22,  -237,     0,     0,     0,
  1842.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1843.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1844.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1845.    258,     0,     0,   587,   259,     7,     8,     0,    10,   437,
  1846.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1847.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1848.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1849.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1850.    247,   248,   249,    21,     0,    22,   588,     0,     0,     0,
  1851.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1852.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1853.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1854.    258,     0,     0,   455,   259,     7,     8,     0,    10,   232,
  1855.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1856.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1857.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1858.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1859.    247,   248,   249,    21,     0,    22,  -237,     0,     0,     0,
  1860.      0,     0,     0,     0,   250,     0,     0,  1177,     0,     0,
  1861.      0,     0,     0,     0,     0,   252,   253,  1178,     0,     0,
  1862.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1863.   1179,     0,     0,  1229,   259,     7,     8,     0,    10,   232,
  1864.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1865.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1866.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1867.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1868.    247,   248,   249,    21,     0,    22,     0,     0,  -139,     0,
  1869.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1870.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1871.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1872.    258,     0,     0,   721,   259,     7,     8,     0,    10,   437,
  1873.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1874.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1875.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1876.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1877.    247,   248,   249,    21,     0,    22,     0,     0,     0,     0,
  1878.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1879.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1880.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1881.    258,     0,     0,     0,   259,     0,     0,     0,     0,     0,
  1882.      0,     0,     0,     0,  -656,   800,   260,     7,     8,     0,
  1883.     10,   437,   233,   234,     0,   235,    12,   475,   476,   477,
  1884.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  1885.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1886.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1887.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  1888.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1889.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1890.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1891.      0,     0,   258,     0,     0,   802,   259,     7,     8,     0,
  1892.     10,   437,   233,   234,     0,   235,    12,     0,   260,     0,
  1893.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1894.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1895.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1896.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  1897.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1898.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1899.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1900.      0,     0,   258,     0,     7,     8,   259,    10,   437,   233,
  1901.    234,     0,   235,    12,     0,     0,     0,     0,   260,     0,
  1902.      0,     0,     0,     0,     0,     0,     0,     0,    15,   236,
  1903.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1904.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1905.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  1906.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1907.      0,     0,     0,     0,   252,   253,   254,     0,     0,     0,
  1908.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1909.      0,     0,     0,   259,     0,     0,     0,     0,     0,     0,
  1910.      0,     0,     0,     0,     0,   260,   760,   966,   967,    92,
  1911.     10,   232,   233,   234,     0,   235,    12,   968,     0,   969,
  1912.    970,   971,   972,   973,   974,   975,   976,   977,   978,    13,
  1913.     14,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1914.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1915.    245,   246,   247,   248,   249,    21,     0,   979,   347,     0,
  1916.    980,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1917.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1918.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1919.      0,     0,   258,     0,   981,     0,   259,     0,     0,     0,
  1920.      0,     0,     0,     0,     0,     0,     0,  1110,   260,   966,
  1921.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1922.      0,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1923.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1924.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1925.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1926.    347,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1927.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1928.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1929.      0,     0,     0,     0,   258,     0,   981,     0,   259,   966,
  1930.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1931.    260,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1932.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1933.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1934.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1935.   1270,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1936.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1937.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1938.      0,     0,     0,     0,   258,     0,   981,     0,   259,   966,
  1939.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1940.    260,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1941.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1942.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1943.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1944.      0,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1945.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1946.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1947.      0,     0,     0,     0,   258,     0,   981,     0,   259,     7,
  1948.      8,    92,    10,   232,   233,   234,   354,   235,    12,     0,
  1949.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1950.      0,     0,     0,    15,   236,   237,   238,    16,     0,   239,
  1951.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1952.    510,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  1953.      0,     0,     0,     0,     0,     0,     0,     0,   250,     0,
  1954.      0,   786,     0,     0,     0,     0,     0,     0,     0,   252,
  1955.    253,   787,     0,     0,     0,     0,     0,   255,   256,   257,
  1956.      0,   513,     0,     0,   788,   515,     0,     0,   259,   355,
  1957.      7,     8,    92,    10,   232,   233,   234,   354,   235,    12,
  1958.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1959.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  1960.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  1961.    244,   510,     0,   245,   246,   247,   248,   249,    21,     0,
  1962.     22,     0,     0,     0,     0,     0,     0,     0,     0,   250,
  1963.      0,     0,   845,     0,     0,     0,     0,     0,     0,     0,
  1964.    252,   253,   846,     0,     0,     0,     0,     0,   255,   256,
  1965.    257,     0,   513,     0,     0,   847,   515,     0,     0,   259,
  1966.    355,     7,     8,     0,    10,   232,   233,   234,     0,   235,
  1967.     12,   260,     0,     0,     0,     0,     0,     0,     0,     0,
  1968.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  1969.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  1970.    243,   244,   510,     0,   245,   246,   247,   248,   249,    21,
  1971.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  1972.    250,     0,     0,   786,     0,     0,     0,     0,     0,     0,
  1973.      0,   252,   253,   787,     0,     0,     0,     0,     0,   255,
  1974.    256,   257,     0,   513,     0,     0,   788,   515,     7,     8,
  1975.      0,    10,   232,   233,   234,     0,   235,    12,     0,     0,
  1976.      0,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  1977.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1978.     17,     0,   240,   241,     0,   242,    19,   243,   244,   510,
  1979.      0,   245,   246,   247,   248,   249,    21,     0,    22,     0,
  1980.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1981.    845,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1982.    846,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1983.    513,     0,     0,   847,   515,     7,     8,     0,    10,   232,
  1984.    233,   234,     0,   235,    12,     0,     0,     0,     0,   260,
  1985.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1986.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1987.    241,     0,   242,    19,   243,   244,   510,     0,   245,   246,
  1988.    247,   248,   249,    21,     0,    22,     0,     0,     0,     0,
  1989.      0,     0,     0,     0,   250,     0,     0,   940,     0,     0,
  1990.      0,     0,     0,     0,     0,   252,   253,   941,     0,     0,
  1991.      0,     0,     0,   255,   256,   257,     0,   513,     0,     0,
  1992.    788,   515,     7,     8,     0,    10,   232,   233,   234,     0,
  1993.    235,    12,     0,     0,     0,     0,   260,     0,     0,     0,
  1994.      0,     0,     0,     0,     0,     0,    15,   236,   237,   238,
  1995.     16,     0,   239,     0,    17,     0,   240,   241,     0,   242,
  1996.     19,   243,   244,     0,     0,   245,   246,   247,   248,   249,
  1997.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  1998.      0,   250,     0,     0,   251,     0,     0,     0,     0,   304,
  1999.      0,     0,   252,   253,   254,     0,     0,     0,     0,     0,
  2000.    255,   256,   257,     0,     0,     0,     0,   258,     0,     7,
  2001.      8,   259,    10,   437,   233,   234,     0,   235,    12,     0,
  2002.      0,     0,     0,   260,     0,     0,     0,     0,     0,     0,
  2003.      0,     0,     0,    15,   236,   237,   238,    16,     0,   239,
  2004.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  2005.      0,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  2006.      0,     0,  1087,     0,     0,     0,     0,     0,   250,     0,
  2007.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  2008.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  2009.      0,     0,     0,     0,   258,     0,     7,     8,   259,    10,
  2010.    232,   233,   234,     0,   235,    12,     0,     0,     0,     0,
  2011.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2012.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  2013.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  2014.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  2015.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  2016.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  2017.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  2018.      0,   258,     0,     7,     8,   259,    10,   437,   233,   234,
  2019.      0,   235,    12,     0,     0,     0,     0,   260,     0,     0,
  2020.      0,     0,     0,     0,     0,     0,     0,    15,   236,   237,
  2021.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  2022.    242,    19,   243,   244,     0,     0,   245,   246,   247,   248,
  2023.    249,    21,     0,    22,   463,     0,     0,     0,     0,     0,
  2024.      0,     0,   250,     0,     0,   251,     0,     0,     0,     0,
  2025.      0,     0,     0,   252,   253,   254,     0,     0,     0,     0,
  2026.      0,   255,   256,   257,     0,     0,     7,     8,   464,    10,
  2027.    437,   233,   234,     0,   235,    12,     0,     0,     0,     0,
  2028.      0,     0,     0,     0,   260,     0,     0,     0,     0,     0,
  2029.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  2030.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  2031.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  2032.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  2033.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  2034.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  2035.      0,   258,   500,     7,     8,     0,    10,   437,   233,   234,
  2036.      0,   235,    12,     0,     0,     0,     0,   260,     0,     0,
  2037.      0,     0,     0,     0,     0,     0,     0,    15,   236,   237,
  2038.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  2039.    242,    19,   243,   244,     0,     0,   245,   246,   247,   248,
  2040.    249,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  2041.      0,     0,   250,     0,     0,   251,     0,     0,     0,     0,
  2042.      0,     0,     0,   252,   253,   254,     0,     0,     0,     0,
  2043.      0,   255,   256,   257,     0,     0,     0,     0,   258,     0,
  2044.      7,   697,   259,    10,   437,   233,   234,     0,   235,    12,
  2045.      0,     0,     0,     0,   260,     0,     0,     0,     0,     0,
  2046.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  2047.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  2048.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  2049.     22,     0,     0,     0,     0,     0,     0,     0,     0,   250,
  2050.      0,     0,   251,     0,     0,     0,     0,     0,     0,     0,
  2051.    252,   253,   254,     0,     0,     0,     0,     0,   255,   256,
  2052.    257,     0,     0,     0,     0,   258,     0,     7,     8,   259,
  2053.     10,   437,   233,   234,     0,   235,    12,     0,     0,     0,
  2054.      0,   260,     0,     0,     0,     0,     0,     0,     0,     0,
  2055.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  2056.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  2057.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  2058.      0,     0,     0,     0,     0,     0,   250,     0,     0,   890,
  2059.      0,     0,     0,     0,     0,     0,     0,   252,   253,   891,
  2060.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  2061.      0,     0,   258,     0,     7,     8,   259,    10,   437,   233,
  2062.    234,     0,   235,    12,     0,     0,     0,     0,   260,     0,
  2063.      0,     0,     0,     0,     0,     0,     0,     0,    15,   236,
  2064.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  2065.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  2066.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  2067.      0,     0,     0,   250,     0,     0,  1177,     0,     0,     0,
  2068.      0,     0,     0,     0,   252,   253,  1178,     0,     0,     0,
  2069.      0,     0,   255,   256,   257,     0,     0,     0,     0,  1179,
  2070.      0,  1242,     8,   259,    10,   437,   233,   234,     0,   235,
  2071.     12,     0,     0,     0,     0,   260,     0,     0,     0,     0,
  2072.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  2073.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  2074.    243,   244,     0,     0,   245,   246,   247,   248,   249,    21,
  2075.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2076.    250,     0,     0,   251,     0,     0,     0,     0,     0,     0,
  2077.      0,   252,   253,   254,     0,     0,     0,     0,     0,   255,
  2078.    256,   257,     0,     0,     0,     0,   258,     0,     7,     8,
  2079.    259,    10,   437,   233,   234,     0,   235,    12,     0,     0,
  2080.      0,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  2081.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  2082.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  2083.      0,   245,   246,   247,   248,   249,    21,     0,    22,     0,
  2084.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  2085.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  2086.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  2087.      0,     7,     8,   258,    10,   437,   233,   234,     0,   235,
  2088.     12,     0,     0,     0,     0,     0,     0,     0,     0,   260,
  2089.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  2090.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  2091.    243,   244,     0,     0,   245,   246,   247,   248,   249,    21,
  2092.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2093.    250,     0,     0,   890,     0,     0,     0,     0,     0,     0,
  2094.      0,   252,   253,   891,     0,     0,     0,     0,     0,   255,
  2095.    256,   257,     0,     0,     7,     8,   258,    10,   232,   233,
  2096.    234,     0,   235,    12,     0,     0,     0,     0,     0,     0,
  2097.      0,     0,   260,     0,     0,     0,     0,     0,    15,   236,
  2098.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  2099.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  2100.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  2101.      0,     0,     0,   250,     0,     0,  1177,     0,     0,     0,
  2102.      0,     0,     0,     0,   252,   253,  1178,     0,     0,     0,
  2103.      0,     0,   255,   256,   257,     0,     0,     7,     8,  1179,
  2104.     10,   437,   233,   234,     0,   235,    12,     0,     0,     0,
  2105.      0,     0,     0,     0,     0,   260,     0,     0,     0,     0,
  2106.      0,    15,   236,     0,     0,    16,     0,   239,     0,    17,
  2107.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  2108.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  2109.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  2110.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  2111.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  2112.      7,     8,   441,    10,   437,   233,   234,     0,   235,    12,
  2113.      0,     0,     0,     0,     0,     0,     0,     0,   260,     0,
  2114.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  2115.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  2116.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  2117.     22,     0,     7,     8,   158,   159,   160,     0,     0,     0,
  2118.      0,    12,     0,     0,     0,     0,     0,     7,     8,   151,
  2119.     10,   152,     0,     0,     0,     0,    12,     0,   255,   256,
  2120.    257,     0,     0,     0,    17,   258,     0,     0,     0,   259,
  2121.     19,    15,     0,   510,     0,    16,     0,     0,     0,    17,
  2122.     21,   260,    22,     0,     0,    19,     0,     0,     0,     0,
  2123.      0,     0,     0,     0,   603,    21,     0,    22,     0,     0,
  2124.    153,     0,     0,     0,   604,     0,     0,     0,     0,    24,
  2125.      0,     0,    26,     0,   513,     0,     0,   605,   515,    25,
  2126.      0,     7,     8,    92,    10,    11,     0,    26,   618,     0,
  2127.     12,     0,    27,     0,     0,     0,     0,     0,   655,     8,
  2128.    151,    10,   152,     0,     0,    15,     0,    12,     0,    16,
  2129.      0,     0,     0,    17,     0,     0,     0,     0,     0,    19,
  2130.      0,     0,    15,     0,     0,     0,    16,     0,     0,    21,
  2131.     17,    22,     0,     0,     0,     0,    19,     0,     0,     0,
  2132.      0,     0,     0,    24,     0,     0,    21,     0,    22,     0,
  2133.      0,     0,     0,    25,     0,   658,     0,     0,     0,     0,
  2134.     24,    26,     0,     0,     0,     0,    27,     0,     0,     0,
  2135.     25,     7,     8,   151,    10,   152,     0,     0,    26,     0,
  2136.     12,     0,     0,    27,     0,     0,     0,     0,     7,     8,
  2137.    151,    10,   152,     0,     0,    15,     0,    12,     0,    16,
  2138.      0,     0,     0,    17,     0,     0,     0,     0,     0,    19,
  2139.      0,     0,    15,     0,     0,     0,    16,     0,     0,    21,
  2140.     17,    22,     0,     0,  1099,     0,    19,     0,     0,     0,
  2141.      0,     0,     8,    24,    10,   184,    21,     0,    22,     0,
  2142.     12,     0,     0,    25,     0,     0,     0,     0,     0,     0,
  2143.     24,    26,     0,     0,     0,    15,    27,     0,     0,    16,
  2144.     25,     0,     0,    17,     0,     0,     0,     0,    26,     0,
  2145.      0,     0,   510,    27,     0,     0,     0,     0,     0,    21,
  2146.      0,    93,     0,     0,     0,     0,     0,     0,     0,     0,
  2147.    466,   467,   468,   511,   469,   470,   471,   472,   473,   474,
  2148.    475,   476,   477,   512,   479,   480,   481,   482,   483,   484,
  2149.    485,   486,   487,   513,     0,     0,   514,   515,   466,   467,
  2150.    468,     0,   469,   470,   471,   472,   473,   474,   475,   476,
  2151.    477,   478,   479,   480,   481,   482,   483,   484,   485,   486,
  2152.    487,   543,   682,   466,   467,   468,     0,   469,   470,   471,
  2153.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2154.    482,   483,   484,   485,   486,   487,  1040,   466,   467,   468,
  2155.      0,   469,   470,   471,   472,   473,   474,   475,   476,   477,
  2156.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2157.    466,   467,   468,  1204,   469,   470,   471,   472,   473,   474,
  2158.    475,   476,   477,   478,   479,   480,   481,   482,   483,   484,
  2159.    485,   486,   487,   466,   467,   468,  1253,   469,   470,   471,
  2160.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2161.    482,   483,   484,   485,   486,   487,   466,   467,   468,     0,
  2162.    469,   470,   471,   472,   473,   474,   475,   476,   477,   478,
  2163.    479,   480,   481,   482,   483,   484,   485,   486,   487,   468,
  2164.      0,   469,   470,   471,   472,   473,   474,   475,   476,   477,
  2165.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2166.    470,   471,   472,   473,   474,   475,   476,   477,   478,   479,
  2167.    480,   481,   482,   483,   484,   485,   486,   487,   472,   473,
  2168.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  2169.    484,   485,   486,   487,   473,   474,   475,   476,   477,   478,
  2170.    479,   480,   481,   482,   483,   484,   485,   486,   487
  2171. };
  2172.  
  2173. static const short yycheck[] = {     4,
  2174.      4,   188,   265,   136,   416,   284,   117,    12,   108,   109,
  2175.      4,   339,    12,   299,     4,    20,    20,   389,   388,    24,
  2176.     25,    52,    27,   284,   131,   347,   749,    71,    33,    33,
  2177.     20,    20,   154,   161,   162,   130,   131,   134,   129,    44,
  2178.    299,    46,   816,    33,   136,   988,  1155,    52,  1047,   181,
  2179.   1183,   299,    52,    34,    59,   988,     9,     1,     9,     4,
  2180.      9,    48,   995,    55,    88,    70,    71,   278,  1216,    70,
  2181.     34,   154,    77,    77,    10,     3,     4,    44,  1226,   407,
  2182.      7,    10,    87,    55,    55,    56,    87,    77,    77,    36,
  2183.     95,    96,     4,    98,     3,     4,   101,    98,    70,   104,
  2184.    105,    36,   185,   108,   109,    51,     4,    60,    53,   368,
  2185.     54,   103,     4,  1246,   119,   119,   121,   122,    44,    55,
  2186.    368,    62,   103,    69,    60,    53,    55,    54,    95,   119,
  2187.     75,    60,   136,    60,   139,   140,   141,    12,  1247,   103,
  2188.     56,    53,     4,   515,    53,  1144,  1279,    75,  1296,   102,
  2189.    337,   102,   363,   102,   121,    53,   103,    93,    76,    51,
  2190.    165,    53,    88,     4,    93,    92,   102,   154,   103,   301,
  2191.     88,    89,     4,    65,   161,   162,   102,    52,   183,   183,
  2192.    954,    99,  1163,    75,   125,    27,    44,   103,   193,   286,
  2193.    913,    53,    44,   183,   188,    60,    51,    89,   185,    56,
  2194.     58,   142,     0,    44,    69,    60,    58,   299,    55,    54,
  2195.     51,   398,    53,    75,    69,    60,   157,    44,   136,  1328,
  2196.   1329,    53,    56,    70,    65,   230,   231,   271,  1209,   440,
  2197.     88,    89,   107,  1166,    75,     0,    88,   344,   345,     6,
  2198.      7,    55,   229,    75,    85,    12,   103,    88,    89,   344,
  2199.    345,   346,   343,   532,     4,   388,     3,     4,    88,    89,
  2200.     60,    88,    89,    66,   392,   393,   271,   109,    35,   103,
  2201.    275,   393,   277,   278,   279,   102,   368,    44,   378,   379,
  2202.    285,     4,    85,   284,     7,    56,    56,    44,   102,   659,
  2203.   1223,   278,   420,    56,   299,   299,   388,    44,    51,   141,
  2204.    103,    23,   102,    53,    51,    60,    53,  1250,   313,    44,
  2205.    985,   316,   987,    56,  1257,   320,    69,  1250,   285,   324,
  2206.    324,    88,   650,    55,  1257,    75,    97,  1050,    51,    92,
  2207.     53,    88,    89,   103,   324,   324,    55,    10,    60,    88,
  2208.    258,    88,    65,   337,    45,   102,   149,   102,  1281,   102,
  2209.     56,    56,    75,    88,     4,   360,   361,   362,   363,   364,
  2210.    103,    56,   457,   368,   368,    60,    89,     3,  1311,   374,
  2211.    102,   376,    56,   378,   379,   250,   363,   136,  1311,   566,
  2212.    385,   299,    55,   102,   388,    58,   391,    60,   329,   394,
  2213.    384,     4,   195,   360,     7,   362,   363,   103,   103,     3,
  2214.      4,    51,   407,    53,   398,   392,   393,    55,   413,   414,
  2215.      1,   416,   416,   785,   784,    65,   421,    55,    56,   103,
  2216.     93,    54,   514,    69,    44,    75,   416,    60,   258,   521,
  2217.     44,    44,    23,   420,    25,    26,    88,    41,    51,    44,
  2218.     53,    32,   447,   448,   449,   450,   413,    55,    56,    53,
  2219.    368,    44,    65,   497,   102,    44,   643,    27,    44,    92,
  2220.     54,   402,    75,    54,    55,    56,    60,    58,    88,    60,
  2221.    388,    75,    85,    55,    88,    88,    89,    44,   419,    83,
  2222.    283,    44,    54,    88,    89,   592,     3,     4,    70,   676,
  2223.     56,   819,   497,    51,   499,    88,    89,   592,    92,    88,
  2224.     89,    92,    88,   421,   307,    44,   511,   512,     4,   514,
  2225.    514,     7,   640,   605,    56,   794,   521,   521,   804,   611,
  2226.    438,    88,   553,   441,    41,    88,   659,   790,   446,   447,
  2227.    448,   449,   450,   794,   862,    60,    53,   379,   108,   109,
  2228.     44,    54,   460,   373,    69,   804,   464,   552,   553,    88,
  2229.     92,   923,    44,   553,    58,    51,   804,    53,    75,     3,
  2230.      4,    44,     6,   103,   385,   552,    83,   659,    54,    65,
  2231.    681,   141,   566,   394,    55,    25,    26,    58,   496,    75,
  2232.    102,     3,     4,   342,    88,   552,     3,     4,   463,    70,
  2233.     55,    56,     3,     4,     3,     4,    88,    41,   603,   604,
  2234.    605,   605,   102,    51,    54,    88,   611,   611,   438,    53,
  2235.     60,   441,    60,   443,   444,   102,   446,    51,  1030,    41,
  2236.    102,    69,   627,   628,    41,   630,    60,    25,    26,   388,
  2237.    433,    53,    41,    37,   464,    69,    53,     9,   468,    83,
  2238.     51,   102,    53,    54,    53,   650,    54,    51,    56,   643,
  2239.    972,   784,    60,   640,   659,   659,    54,   103,    75,     6,
  2240.      7,    83,    60,    92,   494,    12,    83,     4,     3,     6,
  2241.    500,    97,    27,   678,    83,    12,    60,   436,   553,   521,
  2242.     25,    26,   676,   688,   689,   690,   873,   874,    35,   876,
  2243.     27,   678,   784,   105,    31,    88,   788,    89,    35,   136,
  2244.      3,     4,     5,     6,     7,   105,   509,   918,     5,     6,
  2245.      7,    51,   804,   588,    51,    12,    53,    78,    79,   660,
  2246.     60,   524,    55,    56,   665,   666,    55,    56,   669,    69,
  2247.    919,   920,    35,   922,   493,    89,   495,   496,    35,   839,
  2248.    840,   659,    60,   748,    88,   845,   846,    88,    51,    88,
  2249.     53,    54,    88,   108,   109,   847,  1078,  1079,    69,    54,
  2250.     69,    56,   521,   605,   769,    60,   771,    69,   527,   611,
  2251.   1092,    69,    54,   778,    56,     9,   987,   782,    60,   784,
  2252.    784,   786,   787,   788,   788,   102,   141,   103,    23,   794,
  2253.   1112,  1113,    55,   794,   102,    98,    99,   100,   102,   804,
  2254.    804,   806,   102,     3,     4,     5,     6,     7,   378,   379,
  2255.      3,     3,     4,   103,   688,   689,   690,   659,    54,    54,
  2256.     58,    56,   581,    58,     7,    60,    55,    56,    55,    56,
  2257.    748,   102,   837,   838,   839,   840,   102,  1159,   102,   844,
  2258.    845,   846,   847,   847,    58,    37,    38,  1328,  1329,    41,
  2259.    105,   693,   611,    53,   102,     4,   105,   862,    88,    51,
  2260.    778,    53,    32,    12,   235,   236,   784,   872,  1290,  1291,
  2261.    875,    20,   877,   877,   879,    24,    25,   105,    27,   873,
  2262.    874,   105,   876,   102,    33,   102,   804,   877,    75,    76,
  2263.     77,    78,    79,     4,   102,    44,     7,    46,    51,    25,
  2264.     26,     6,   105,    52,    88,   342,    32,    44,    58,    55,
  2265.     59,     5,     6,     7,   919,   920,    58,   922,    12,    58,
  2266.     56,    56,    71,    56,    56,    56,   756,   868,    77,    55,
  2267.     56,    55,    58,    44,   693,   940,   941,   102,  1125,  1126,
  2268.     51,    35,    53,   861,    58,   787,    95,    96,   953,   953,
  2269.    102,   388,   101,    55,    65,   830,   105,   102,   788,   108,
  2270.    109,   879,   102,   953,    75,     3,     4,   105,    88,     7,
  2271.    119,    60,   121,   122,    85,    55,    55,    88,    89,    60,
  2272.    985,   986,   987,    58,    88,  1080,   102,   102,    70,  1176,
  2273.    139,   140,   141,   752,   999,  1000,   102,  1002,   840,   436,
  2274.    987,   102,   102,    41,   846,   847,   765,   102,   767,  1220,
  2275.    102,    70,    70,    51,    70,    53,   165,   847,   985,   102,
  2276.    987,    60,    55,   378,   379,  1030,  1030,    65,    60,   102,
  2277.    905,   861,    60,   102,   183,   605,   102,    75,   105,   842,
  2278.   1030,   611,   103,    89,   193,    83,    83,   102,   105,   891,
  2279.     88,    44,   102,   102,     3,     4,   493,   105,   495,   496,
  2280.   1171,   105,   821,   103,   823,    34,   825,   102,     4,     5,
  2281.      6,     7,  1331,   102,    10,   102,    12,  1177,  1178,   102,
  2282.    102,   230,   231,  1331,  1025,  1026,   961,    58,  1183,   659,
  2283.    527,    27,    41,  1280,    58,    31,   102,  1102,    88,    35,
  2284.     88,    88,    51,   978,    53,     7,    88,    56,    10,    88,
  2285.    105,   103,     6,   102,   105,    51,    65,    53,   102,   102,
  2286.     60,   102,   271,   103,   102,   102,    75,   102,   277,   278,
  2287.    279,  1125,  1126,    88,    83,   284,   285,   102,    60,    88,
  2288.     56,   944,    44,    56,   581,     7,    54,   977,    14,    56,
  2289.    299,  1246,    58,    55,   102,   102,    58,    93,    60,  1034,
  2290.   1101,   341,    60,    60,   313,    44,   105,   316,    70,    88,
  2291.     56,   320,  1177,  1178,  1179,   324,    56,    88,    88,  1173,
  2292.   1121,    58,  1176,    58,  1279,   102,    88,    89,   102,    15,
  2293.    339,    93,    56,   105,     4,     5,    56,  1072,   102,   102,
  2294.    102,    56,   103,   102,    56,    56,  1036,  1037,  1038,  1039,
  2295.    102,   360,   361,   362,   363,   364,  1221,    58,  1048,   368,
  2296.     58,    31,     9,    56,   102,   374,    36,   376,   102,   378,
  2297.    379,    56,    56,  1220,    88,    55,   385,  1332,    56,  1331,
  2298.     88,    51,   391,    53,   102,   394,     4,     5,    91,   102,
  2299.    605,  1081,   102,   102,  1221,    58,   611,   102,   407,  1089,
  2300.   1102,  1179,     9,    56,   413,   414,     1,   416,   102,   839,
  2301.    840,   102,   421,    31,    56,   845,   846,   847,    36,     9,
  2302.      0,     0,   118,   326,     2,     1,  1280,   119,    23,   804,
  2303.     25,    26,   119,    51,   129,    53,   819,    32,   447,   448,
  2304.    449,   450,    99,   460,   659,  1144,  1154,    23,  1185,    25,
  2305.     26,  1252,   509,  1081,   986,   752,    32,   684,  1197,    54,
  2306.     55,    56,  1197,    58,   799,    60,  1331,  1331,   765,   588,
  2307.    767,    33,    33,  1163,   862,   650,  1178,  1179,    54,    55,
  2308.     56,   809,    58,  1102,    60,   877,   953,    12,   497,  1179,
  2309.    499,     4,   414,   497,  1184,  1185,   875,    92,     4,     5,
  2310.      6,     7,   511,   512,    10,   514,    12,    20,   540,   797,
  2311.   1270,   833,   521,  1304,  1306,    -1,    92,    44,   879,  1209,
  2312.     33,    27,   368,   532,   821,    31,   823,    -1,   825,    35,
  2313.     -1,     3,     4,    46,    71,    72,    73,    74,    75,    76,
  2314.     77,    78,    79,   552,   553,    51,    59,    53,    -1,    -1,
  2315.     -1,    -1,    -1,  1331,    81,    82,    -1,    -1,    71,    86,
  2316.     87,    88,    89,    76,    77,    -1,    -1,    -1,    -1,    41,
  2317.     -1,    -1,    44,    -1,    -1,    88,    89,    -1,    -1,    51,
  2318.   1199,    53,   622,    96,  1274,    -1,    99,    -1,    60,    -1,
  2319.     -1,    -1,    -1,    65,   603,   604,   605,    -1,    -1,    -1,
  2320.   1290,  1291,   611,    75,    -1,    -1,   119,    -1,    -1,   122,
  2321.     -1,    83,    -1,  1303,    -1,    -1,    88,    -1,   627,   628,
  2322.     -1,   630,    -1,   136,   839,   840,    -1,    -1,    -1,    -1,
  2323.    845,   846,   847,    -1,    -1,    -1,     4,     5,     6,     7,
  2324.     -1,   650,    -1,    -1,    12,    -1,  1265,    -1,     3,     4,
  2325.    659,    -1,     7,   139,   140,   141,    71,    -1,    -1,    27,
  2326.     -1,    76,    -1,    31,    -1,    -1,    -1,    35,    -1,   678,
  2327.    183,    -1,  1102,    88,    89,    -1,    -1,    -1,    -1,   688,
  2328.    689,   690,    -1,    51,    99,    53,    41,    -1,    -1,    44,
  2329.     -1,    -1,    -1,    -1,    -1,    -1,    51,    -1,    53,    -1,
  2330.     -1,    69,    -1,    -1,    -1,    -1,   251,    24,    25,   254,
  2331.     65,   751,   257,    -1,    -1,    -1,    -1,   230,   263,    -1,
  2332.     75,   136,    -1,    -1,    -1,    -1,    -1,   272,    83,    -1,
  2333.     85,    -1,    -1,    88,    89,    -1,    -1,    -1,    -1,   748,
  2334.     -1,    -1,    -1,    -1,    -1,   258,    -1,  1177,  1178,  1179,
  2335.     -1,    -1,    -1,     4,    71,     6,     7,    -1,   271,    76,
  2336.    769,    12,   771,    -1,    -1,    -1,   279,    -1,   808,   778,
  2337.     -1,    88,    89,   782,    -1,   784,    27,   786,   787,   788,
  2338.     31,    -1,    99,    -1,    35,   794,   299,    -1,    -1,    -1,
  2339.     -1,   108,   109,    -1,    -1,   804,    -1,   806,    -1,    -1,
  2340.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,   577,    -1,
  2341.    819,   324,   852,    -1,    -1,    -1,    -1,    -1,    -1,   136,
  2342.     -1,    -1,   139,   140,    -1,    -1,    -1,    -1,   837,   838,
  2343.    839,   840,    -1,    -1,    -1,   844,   845,   846,   847,    -1,
  2344.     -1,    -1,    -1,   258,    -1,    -1,    -1,    -1,   361,    -1,
  2345.     -1,   364,    -1,   862,    -1,   368,   271,    -1,    -1,    -1,
  2346.     -1,    -1,   631,   872,   904,   905,   875,    -1,   877,    -1,
  2347.    879,    -1,    -1,   642,    -1,   388,    73,    74,    75,    76,
  2348.     77,    78,    79,    -1,   299,    -1,    -1,  1102,   374,    -1,
  2349.    376,    69,   378,   379,    -1,    -1,    -1,    -1,    -1,    -1,
  2350.    445,   414,  1199,   416,    -1,   391,    -1,    -1,   421,    -1,
  2351.    919,   920,    -1,   922,    -1,    -1,    -1,     3,     4,    -1,
  2352.     -1,   961,    -1,    -1,    -1,   438,    -1,   413,   441,    -1,
  2353.     -1,   940,   941,   446,   447,   448,   449,   450,   116,    -1,
  2354.     -1,   258,    -1,    -1,   953,    -1,    -1,   460,    -1,    -1,
  2355.     -1,   464,    -1,   368,   271,    41,    -1,   135,    44,    -1,
  2356.     -1,    -1,  1177,  1178,  1179,    51,    -1,    53,  1265,    -1,
  2357.     -1,    -1,   150,   388,    -1,    -1,   985,   986,   987,    65,
  2358.     -1,    -1,   299,   496,   497,    -1,    -1,    -1,    -1,    75,
  2359.    999,  1000,    -1,  1002,    -1,  1035,    -1,    83,    -1,    85,
  2360.   1040,   514,    88,    89,    -1,    -1,   421,    -1,   521,    -1,
  2361.     -1,    -1,    -1,    -1,     1,    -1,     3,     4,     5,     6,
  2362.      7,  1030,    -1,   438,    -1,    12,   441,    -1,    -1,    -1,
  2363.     -1,   446,   447,   448,   449,   450,    -1,    -1,    25,    26,
  2364.     27,    -1,   811,    -1,    31,   460,    -1,    -1,    35,   464,
  2365.     -1,   368,    39,    -1,    41,    -1,    -1,    -1,    45,    -1,
  2366.     -1,   378,   379,    -1,    51,    -1,    53,    -1,    -1,    56,
  2367.     -1,   388,    -1,    -1,  1114,  1115,    -1,    -1,    65,    -1,
  2368.     -1,   496,   497,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2369.     -1,   860,   605,  1102,    -1,    -1,    83,    -1,   611,   514,
  2370.    869,    88,    -1,  1143,   421,    -1,   521,    94,    95,   878,
  2371.     -1,    -1,    -1,     3,     4,    -1,    -1,   603,   604,   605,
  2372.     -1,   438,    -1,    -1,   441,   611,    -1,    -1,    -1,   446,
  2373.    447,   448,   449,   450,    -1,    -1,    -1,    -1,    10,    -1,
  2374.     -1,   627,   628,   460,   630,    -1,   659,   464,  1188,    -1,
  2375.     -1,    41,    -1,    25,    26,  1195,  1196,    -1,    -1,    -1,
  2376.     32,    51,    -1,    53,  1204,    -1,    56,    -1,  1177,  1178,
  2377.   1179,    -1,    44,   659,    -1,    65,    -1,    -1,    -1,   496,
  2378.    497,    -1,    -1,    55,    56,    75,    58,    -1,    60,     4,
  2379.    605,    -1,     7,    83,   511,   512,   611,   514,    88,    -1,
  2380.     -1,    -1,    -1,   381,   521,    -1,    -1,    -1,    -1,   387,
  2381.     -1,    -1,  1221,    -1,    -1,   760,    88,    89,    -1,    -1,
  2382.     92,    93,    -1,  1263,  1264,    -1,    -1,    -1,    -1,    44,
  2383.    102,    -1,    -1,    -1,    -1,   748,    51,    -1,    53,   752,
  2384.     -1,   786,   787,    -1,   659,  1014,  1015,    -1,    -1,    -1,
  2385.     65,    -1,    -1,   431,   432,    -1,   434,    -1,  1027,  1028,
  2386.     75,    -1,    -1,    -1,    -1,   778,    -1,    -1,    -1,    -1,
  2387.     85,   784,    -1,    88,    89,   788,     4,     5,     6,     7,
  2388.     -1,    -1,    -1,    -1,    12,    -1,   603,   604,   605,    -1,
  2389.   1330,   804,    -1,   806,   611,    -1,    -1,    -1,    -1,    27,
  2390.    845,   846,    -1,    31,    -1,    -1,    -1,    35,    -1,    -1,
  2391.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   832,
  2392.     -1,    -1,  1331,    51,    -1,    53,    -1,    -1,   277,   278,
  2393.    279,    -1,    -1,   748,   847,    -1,    -1,    -1,    -1,   517,
  2394.    518,    -1,   659,    -1,   522,   890,   891,    -1,   861,    -1,
  2395.     -1,   837,   838,   839,   840,  1124,     3,     4,   844,   845,
  2396.    846,   847,    -1,   778,   877,    -1,   879,    -1,    -1,   784,
  2397.     -1,    -1,    -1,   788,    -1,    -1,    -1,    -1,    -1,    -1,
  2398.    925,    -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,   804,
  2399.     -1,    -1,    -1,    -1,    41,   940,   941,    -1,    -1,    -1,
  2400.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2401.     -1,   360,    -1,   362,   363,   364,    -1,    -1,    65,   597,
  2402.    598,  1190,  1191,    -1,  1193,  1194,    -1,    -1,    75,   607,
  2403.     -1,   748,   847,    -1,    -1,   613,    83,    -1,    -1,    -1,
  2404.    953,    88,    -1,    -1,    -1,    -1,   861,    -1,    -1,    -1,
  2405.     -1,     1,    -1,     3,     4,     5,     6,     7,    -1,    -1,
  2406.     -1,   778,    12,    -1,   879,    -1,    -1,   784,    -1,   786,
  2407.    787,   788,    -1,   986,    -1,   988,    -1,    27,    -1,   657,
  2408.     -1,    31,   995,    -1,    -1,    35,    36,   804,    -1,     3,
  2409.      4,    41,    -1,     7,    -1,    -1,    -1,    -1,     3,     4,
  2410.     -1,    51,     7,    53,    -1,    -1,    56,    -1,    -1,    -1,
  2411.     60,    -1,    -1,   999,  1000,    65,  1002,  1030,    -1,    -1,
  2412.     -1,    -1,   839,   840,    76,    75,    -1,    41,   845,   846,
  2413.    847,  1300,    -1,    83,    -1,    -1,    41,    51,    88,    53,
  2414.     -1,    -1,    -1,    -1,   861,    -1,    51,    99,    53,    -1,
  2415.     -1,    65,    -1,   103,    -1,    -1,    -1,    -1,     3,     4,
  2416.     65,    75,   879,   512,    -1,   514,    -1,    -1,  1081,    83,
  2417.     75,    -1,   521,    -1,    88,    -1,   754,   755,    83,   757,
  2418.     -1,    -1,    -1,    88,   136,    -1,    -1,     1,    -1,     3,
  2419.      4,     5,     6,     7,    -1,    -1,    41,    -1,    12,    -1,
  2420.     -1,    -1,    -1,   552,    -1,   783,    51,    -1,    53,    -1,
  2421.     -1,    -1,    -1,    27,    -1,    60,  1102,    31,    -1,    -1,
  2422.     65,    35,    36,   940,   941,    -1,    -1,    41,    -1,    -1,
  2423.     75,    -1,  1177,  1178,    -1,    -1,    -1,    51,    83,    53,
  2424.     -1,    -1,  1155,    88,    -1,    -1,    60,    -1,    -1,    -1,
  2425.   1163,    65,    -1,  1166,    -1,   604,   605,    -1,    -1,    -1,
  2426.     -1,    75,   611,    -1,    -1,   843,  1179,    -1,    -1,    83,
  2427.     -1,  1184,  1185,    -1,    88,    -1,    -1,   855,   856,   857,
  2428.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,
  2429.     -1,  1177,  1178,  1179,    -1,    -1,  1209,    -1,    -1,    -1,
  2430.     -1,    -1,    -1,  1216,    -1,    -1,    -1,   259,    -1,    -1,
  2431.   1223,    -1,     4,  1226,     6,     7,    -1,    -1,    -1,    -1,
  2432.     12,    -1,    -1,    -1,     3,     4,     5,     6,     7,   678,
  2433.     -1,    -1,    -1,    12,  1247,    27,    -1,  1250,    -1,    31,
  2434.     -1,    -1,    -1,    35,  1257,    -1,    -1,     1,  1163,     3,
  2435.      4,     5,     6,     7,    -1,   933,    35,    -1,    12,    51,
  2436.     -1,    53,    41,    -1,  1179,    44,    -1,    -1,  1281,  1184,
  2437.   1185,    -1,    51,    27,    53,    -1,    -1,    31,    -1,    -1,
  2438.     -1,    35,    36,  1296,    -1,    -1,    65,    41,    -1,   341,
  2439.    342,    -1,    -1,    -1,  1209,    -1,    75,    51,  1311,    53,
  2440.     -1,    -1,    56,    -1,    83,    -1,    60,    -1,    -1,    88,
  2441.     -1,    65,    -1,    -1,    -1,  1328,  1329,    -1,  1331,    -1,
  2442.    769,    75,   771,    -1,    -1,    -1,    -1,    -1,    -1,    83,
  2443.     -1,    -1,    -1,   782,    88,    -1,   388,    -1,   787,   788,
  2444.   1018,    -1,    -1,    -1,    -1,    -1,  1163,    -1,    -1,   103,
  2445.     -1,    -1,    -1,    -1,    -1,     4,    -1,     6,     7,   411,
  2446.   1177,  1178,  1179,    12,    -1,    -1,    -1,  1184,  1185,    -1,
  2447.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    -1,
  2448.     -1,    -1,    31,    -1,   436,  1063,    35,    -1,   837,   838,
  2449.     -1,   840,  1209,    -1,    -1,   844,    -1,   846,   847,     3,
  2450.      4,    -1,    51,     7,    53,    54,    -1,    -1,   460,    -1,
  2451.     -1,   463,    -1,    -1,   466,   467,  1331,   469,   470,   471,
  2452.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2453.    482,   483,   484,   485,   486,   487,    -1,    41,    -1,    88,
  2454.     44,   493,    -1,   495,   496,    -1,    -1,    51,    -1,    53,
  2455.      3,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2456.     -1,    65,     4,    -1,     6,     7,    -1,    -1,    -1,   521,
  2457.     12,    75,    -1,    -1,    27,   527,     4,    -1,    31,    83,
  2458.     -1,    85,    35,    -1,    88,    89,    -1,    -1,    41,    -1,
  2459.    542,   543,   941,    35,    -1,    -1,    24,    25,    51,    27,
  2460.     53,    -1,    44,    -1,    -1,    33,    -1,    -1,    -1,    51,
  2461.     -1,    53,    65,    -1,  1331,    -1,    44,    -1,    46,    -1,
  2462.     -1,    -1,    75,    65,    -1,    -1,    -1,    -1,    -1,   581,
  2463.     83,    -1,    -1,    75,    -1,    88,   588,    -1,    66,    -1,
  2464.     93,    -1,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,
  2465.    999,  1000,     1,  1002,     3,     4,     5,     6,     7,   611,
  2466.     -1,    -1,    -1,    12,    -1,    -1,    -1,    95,    -1,    -1,
  2467.    622,    -1,    -1,   101,    -1,   103,    -1,   105,    27,    -1,
  2468.    108,   109,    31,    -1,    -1,    -1,    35,    -1,    -1,    -1,
  2469.     -1,   119,    41,   121,   122,    -1,    45,    -1,    -1,    -1,
  2470.     -1,    -1,    51,    -1,    53,    -1,   658,    56,    -1,    -1,
  2471.     -1,   139,   140,   141,    -1,    -1,    65,    -1,    -1,    -1,
  2472.     -1,   149,    -1,    -1,    -1,    -1,    75,    -1,    -1,    -1,
  2473.     -1,    -1,    -1,    -1,    83,    -1,    -1,   165,    -1,    88,
  2474.     -1,   693,    -1,    -1,    -1,    94,     1,    -1,     3,     4,
  2475.     -1,     6,     7,     8,     9,   183,    11,    12,    -1,    -1,
  2476.     -1,    -1,   714,    -1,    -1,   193,    -1,    -1,    -1,    -1,
  2477.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2478.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2479.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,   751,
  2480.    752,    -1,    -1,    -1,    -1,    60,    -1,    62,    -1,    -1,
  2481.     65,    -1,    -1,   765,    -1,   767,    -1,    -1,    73,    74,
  2482.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2483.     -1,    -1,    -1,    88,    -1,    -1,    -1,    92,    -1,    -1,
  2484.     -1,    -1,    -1,    -1,   796,    -1,    -1,   275,    -1,   104,
  2485.     -1,    -1,    -1,    -1,    -1,   283,   808,   285,    -1,     3,
  2486.      4,    -1,     6,     7,     8,     9,    -1,    11,    12,   821,
  2487.     -1,   823,    -1,   825,    -1,    -1,    -1,    -1,    -1,    -1,
  2488.     -1,    -1,    -1,    27,    28,   313,    -1,    31,   316,    33,
  2489.     -1,    35,   320,    37,    38,    -1,    40,    41,    42,    43,
  2490.    852,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2491.     -1,    -1,    -1,    -1,   866,   867,    -1,    -1,    62,    -1,
  2492.     -1,    65,    -1,    -1,    -1,    -1,    -1,     3,     4,    73,
  2493.     74,    75,   360,   361,   362,   363,    -1,    81,    82,    83,
  2494.    368,    -1,    -1,    -1,    88,    -1,   374,    -1,   376,    -1,
  2495.    378,   379,   904,   905,    -1,    -1,   908,   385,    -1,    -1,
  2496.    104,    -1,    -1,   391,    -1,    41,   394,    -1,     1,    -1,
  2497.      3,     4,     5,     6,     7,    51,    -1,    53,    -1,    12,
  2498.     -1,     3,     4,    -1,    60,   413,   414,    -1,   416,    65,
  2499.     -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,    75,
  2500.     -1,    -1,    35,    36,    -1,    -1,    -1,    83,    41,   961,
  2501.     -1,    -1,    88,    -1,    -1,    -1,    -1,     4,    51,    41,
  2502.     53,   973,    -1,    -1,     3,     4,    -1,    60,     7,    51,
  2503.     -1,    53,    65,    -1,    -1,    -1,    -1,    24,    25,    -1,
  2504.     27,    -1,    75,    65,    -1,    -1,    33,    -1,    -1,    -1,
  2505.     83,    -1,    -1,    75,    -1,    88,    -1,    44,    -1,    46,
  2506.     -1,    83,    41,    -1,    -1,    44,    88,    -1,    -1,  1021,
  2507.    103,    -1,    51,    -1,    53,     3,     4,     5,     6,     7,
  2508.     -1,   509,    10,  1035,    12,    -1,    65,    -1,  1040,    -1,
  2509.   1042,    -1,    -1,   521,    -1,    -1,    75,    -1,    -1,    27,
  2510.     -1,    -1,    -1,    31,    83,    -1,    85,    35,    95,    88,
  2511.     89,    -1,    -1,    41,   101,    -1,    44,    -1,   105,    -1,
  2512.     -1,   108,   109,    51,   552,    53,    -1,    -1,    -1,    -1,
  2513.     -1,    -1,   119,    -1,   121,   122,    -1,    65,    -1,    -1,
  2514.     -1,     4,    -1,     6,     7,    -1,    -1,    75,    -1,    12,
  2515.   1102,    -1,   139,   140,   141,    83,    -1,    85,    -1,    -1,
  2516.     88,    89,  1114,  1115,    27,    93,    -1,    -1,    31,    -1,
  2517.   1122,  1123,    35,    -1,    -1,   603,   604,   605,   165,    -1,
  2518.     -1,    -1,    -1,   611,    -1,    -1,    -1,    -1,    51,    -1,
  2519.     53,  1143,    -1,    -1,    -1,    -1,   183,    -1,    -1,   627,
  2520.    628,    -1,   630,    -1,    -1,    -1,   193,    -1,    -1,    -1,
  2521.     -1,    -1,  1164,    68,    69,    70,    71,    72,    73,    74,
  2522.     75,    76,    77,    78,    79,    88,    -1,     1,    -1,     3,
  2523.      4,   659,     6,     7,     8,     9,  1188,    11,    12,    -1,
  2524.     -1,    -1,    -1,  1195,  1196,    -1,    -1,  1199,    -1,    -1,
  2525.     -1,    -1,  1204,    27,    28,    29,    30,    31,    -1,    33,
  2526.     -1,    35,    -1,    37,    38,   693,    40,    41,    42,    43,
  2527.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2528.     54,    -1,    -1,    -1,     3,     4,    -1,    -1,    62,    -1,
  2529.     -1,    65,    -1,    -1,    -1,    -1,    -1,   284,   285,    73,
  2530.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2531.     -1,  1263,  1264,  1265,    88,    89,    -1,    -1,    92,    -1,
  2532.     -1,    -1,    41,    -1,    -1,    -1,   313,    -1,    -1,   316,
  2533.    104,    -1,    51,   320,    53,    -1,    -1,    -1,    -1,    -1,
  2534.     27,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,    -1,
  2535.     -1,    -1,   339,    -1,    -1,    -1,    75,    44,   786,   787,
  2536.     -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,    -1,    88,
  2537.     -1,    -1,    -1,   360,   361,   362,   363,    -1,  1330,    -1,
  2538.     -1,   368,    -1,    -1,    -1,    -1,    -1,   374,    -1,   376,
  2539.     -1,   378,   379,    -1,    -1,    -1,    -1,    -1,   385,    -1,
  2540.     -1,    -1,    -1,    -1,   391,    -1,    -1,   394,    95,   837,
  2541.    838,   839,   840,    -1,   842,    -1,   844,   845,   846,   847,
  2542.     -1,   108,   109,    -1,    -1,    -1,   413,   414,    -1,   416,
  2543.     -1,    -1,    -1,    -1,   121,    -1,    -1,    -1,    -1,    -1,
  2544.     -1,    -1,    -1,    -1,   872,    -1,    -1,   875,    -1,   877,
  2545.     -1,    -1,   139,   140,   141,    -1,    -1,    -1,    -1,    -1,
  2546.     -1,    -1,   890,   891,    -1,     1,    -1,     3,     4,     5,
  2547.      6,     7,     8,     9,    -1,    11,    12,    13,   165,    15,
  2548.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2549.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2550.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2551.     46,    47,    48,    49,    50,    51,   944,    53,    54,    -1,
  2552.     56,    -1,    -1,    -1,    -1,   953,    62,    -1,    -1,    65,
  2553.     -1,    -1,    -1,    -1,   521,    -1,    -1,    73,    74,    75,
  2554.     -1,    -1,    -1,    -1,   231,    81,    82,    83,    -1,    -1,
  2555.     -1,    -1,    88,    -1,    90,    -1,    92,   985,   986,   987,
  2556.     -1,    -1,    -1,    -1,    -1,   552,    -1,   103,   104,    -1,
  2557.     -1,   999,  1000,    -1,  1002,     3,     4,    -1,    -1,     7,
  2558.     -1,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2559.    277,   278,   279,    -1,    -1,    -1,    -1,    -1,   285,    -1,
  2560.     -1,    -1,  1030,    -1,    27,    -1,    -1,    -1,    31,    -1,
  2561.     -1,    -1,    35,    41,    -1,    -1,   603,   604,   605,    -1,
  2562.     -1,    44,    -1,    51,   611,    53,    -1,    -1,    51,    -1,
  2563.     53,    -1,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,
  2564.    627,   628,    65,   630,    -1,    -1,    -1,    75,    -1,    -1,
  2565.     -1,    -1,    75,    -1,    -1,    83,    -1,    -1,    -1,    -1,
  2566.     88,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,    -1,
  2567.     93,    -1,   659,   360,  1102,   362,   363,   364,    -1,     1,
  2568.     -1,     3,     4,     5,     6,     7,    -1,   374,    -1,   376,
  2569.     12,   378,   379,    -1,    -1,    -1,     3,     4,   385,    -1,
  2570.      7,   277,   278,   279,   391,    27,   693,   394,    -1,    31,
  2571.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    44,    41,
  2572.     -1,    -1,    -1,    -1,    -1,    -1,   413,    -1,    -1,    51,
  2573.     -1,    53,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2574.     66,    -1,    -1,    65,    51,    -1,    53,    -1,    -1,  1177,
  2575.   1178,  1179,    -1,    75,    -1,    -1,     3,     4,    65,    85,
  2576.      7,    83,    -1,    -1,    -1,    -1,    88,    -1,    75,    95,
  2577.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2578.     -1,    88,    89,    -1,   360,    -1,   362,   363,   364,    -1,
  2579.     -1,    -1,    -1,  1221,    41,   121,    -1,    -1,    -1,   786,
  2580.    787,    -1,    -1,    -1,    51,    -1,    53,   794,    -1,    -1,
  2581.     -1,    -1,   499,   139,   140,   141,    -1,    -1,    65,    -1,
  2582.     -1,    -1,    -1,   149,   511,   512,    -1,   514,    75,    -1,
  2583.     -1,    -1,   819,    -1,   521,    -1,    83,    -1,    -1,   165,
  2584.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2585.    837,   838,   839,   840,    -1,    -1,    -1,   844,   845,   846,
  2586.    847,    -1,    -1,    -1,    -1,   552,    -1,    -1,    -1,   195,
  2587.     -1,    -1,     4,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2588.     -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,   875,    -1,
  2589.    877,    -1,    24,    25,    -1,    -1,    -1,     4,    -1,     6,
  2590.      7,    33,    -1,   890,   891,    12,    -1,    -1,    -1,    -1,
  2591.     -1,    -1,    -1,    -1,    46,    -1,   603,   604,   605,    -1,
  2592.     -1,    -1,    -1,    -1,   611,    -1,    -1,    -1,    35,    -1,
  2593.     -1,    -1,    -1,    -1,    -1,   511,   512,    44,   514,    -1,
  2594.    627,   628,    -1,   630,    51,   521,    53,    -1,     4,     5,
  2595.      6,     7,    -1,    -1,    -1,    -1,    12,   283,    65,   285,
  2596.     -1,    -1,    -1,    -1,    -1,    -1,   953,    -1,    75,   101,
  2597.     -1,    27,   659,   105,    -1,    31,   552,    -1,    85,    35,
  2598.     -1,    88,    89,    -1,    -1,    -1,    -1,   119,    -1,    -1,
  2599.    122,   678,     3,     4,    -1,    51,     7,    53,   985,   986,
  2600.    987,   688,   689,   690,    -1,    -1,    -1,   139,   140,    -1,
  2601.     -1,    -1,   999,  1000,    -1,  1002,    -1,    -1,    -1,    -1,
  2602.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   603,   604,   605,
  2603.     41,    -1,    -1,    -1,   360,   611,   362,   363,    -1,    -1,
  2604.     51,    -1,    53,  1030,    -1,    -1,    -1,    -1,   374,    -1,
  2605.    376,   183,   378,   379,    65,    -1,     3,     4,    -1,   385,
  2606.      7,   193,    -1,    -1,    75,   391,    -1,    -1,   394,    -1,
  2607.     -1,    -1,    83,    -1,    -1,    -1,    12,    88,    -1,    -1,
  2608.     -1,    -1,   769,    -1,   771,    -1,    -1,   413,    24,    25,
  2609.     -1,    27,    -1,    -1,    41,   782,    -1,    -1,    -1,   786,
  2610.    787,   788,   678,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2611.     -1,    -1,    -1,    -1,    -1,  1102,    52,    -1,    65,    -1,
  2612.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2613.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,
  2614.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2615.    837,   838,   839,   840,    -1,    -1,    -1,   844,   845,   846,
  2616.    847,    -1,    -1,    -1,    -1,   101,    -1,   103,   104,   105,
  2617.     -1,    -1,   108,   109,    -1,     3,     4,    -1,    -1,     7,
  2618.     -1,   313,    -1,    -1,   316,   872,    -1,    -1,   320,    -1,
  2619.   1177,  1178,  1179,   769,    -1,   771,    -1,    -1,   524,    -1,
  2620.     -1,    -1,    -1,    -1,    -1,    -1,   782,    -1,    -1,    -1,
  2621.    786,   787,   788,    41,    -1,    -1,    -1,    -1,    -1,    -1,
  2622.     -1,    -1,    -1,    51,    -1,    53,   552,    -1,    -1,   361,
  2623.     -1,    -1,   919,   920,  1221,   922,   368,    65,    -1,    -1,
  2624.     -1,    -1,   374,    -1,   376,    -1,    -1,    75,    -1,    -1,
  2625.     -1,    -1,    -1,   940,   941,    83,    -1,   193,    -1,   391,
  2626.     88,   837,   838,   839,   840,    -1,    -1,    -1,   844,   845,
  2627.    846,   847,    -1,    -1,    -1,    -1,    -1,   603,   604,   605,
  2628.     -1,   413,   414,    -1,   416,   611,    -1,    -1,    -1,    -1,
  2629.      3,     4,     5,     6,     7,   231,    -1,    -1,   985,    12,
  2630.    987,   627,   628,    -1,   630,    -1,    -1,    -1,    -1,    -1,
  2631.     -1,    -1,   999,  1000,    27,  1002,    -1,    -1,    31,    -1,
  2632.     -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  2633.     -1,    44,    -1,   659,    -1,    -1,    -1,    -1,    51,   275,
  2634.     53,   277,   278,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2635.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2636.     -1,    -1,    75,    -1,   940,   941,    -1,    -1,    -1,    -1,
  2637.     83,   307,    85,    -1,    -1,    88,    89,   313,    -1,    -1,
  2638.    316,    -1,    -1,    -1,   320,    63,    64,    65,    66,    67,
  2639.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2640.     78,    79,     1,    -1,     3,     4,     5,     6,     7,     8,
  2641.      9,    10,    11,    12,    -1,  1102,    -1,    -1,    -1,    -1,
  2642.     -1,    -1,    -1,   999,  1000,    -1,  1002,    -1,    27,    28,
  2643.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2644.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2645.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  2646.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2647.     -1,   603,   604,    -1,    73,    74,    75,    -1,    -1,    -1,
  2648.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2649.   1177,  1178,  1179,    92,    93,   627,   628,   433,   630,    -1,
  2650.     -1,    -1,    -1,   102,    -1,   104,    -1,    -1,    -1,    -1,
  2651.     -1,   837,   838,   839,   840,    -1,   842,    -1,   844,   845,
  2652.    846,   847,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2653.     -1,    -1,    -1,    -1,  1221,    -1,    -1,    -1,    -1,    -1,
  2654.     -1,    -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,    -1,
  2655.     -1,     1,    -1,     3,     4,     5,     6,     7,     8,     9,
  2656.     10,    11,    12,   499,    -1,    -1,    -1,    -1,    -1,    -1,
  2657.     -1,    -1,    -1,   509,    -1,   511,   512,    27,    28,    29,
  2658.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2659.     40,    41,    42,    43,    44,    -1,    46,    47,    48,    49,
  2660.     50,    51,    -1,    53,    54,    -1,    -1,    -1,    -1,    -1,
  2661.     -1,    -1,    62,    -1,    -1,    65,    -1,   553,   944,    -1,
  2662.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  2663.     -1,    81,    82,    83,    -1,    85,    -1,    -1,    88,    89,
  2664.     -1,    -1,    92,    93,    -1,    -1,     3,     4,     5,     6,
  2665.      7,    -1,    -1,    -1,   104,    12,    -1,    -1,    -1,   985,
  2666.     -1,   987,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2667.     -1,    -1,    -1,   999,  1000,    -1,  1002,    -1,    35,    -1,
  2668.     -1,    -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2669.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2670.     -1,    -1,    -1,    -1,    -1,   837,   838,    -1,    65,    -1,
  2671.     -1,    -1,   844,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2672.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2673.     -1,    88,    89,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2674.    872,    -1,   678,   875,    -1,   877,    -1,    -1,    -1,    -1,
  2675.     -1,    -1,   688,   689,   690,    -1,     1,    -1,     3,     4,
  2676.      5,     6,     7,     8,     9,    10,    11,    12,    -1,    -1,
  2677.     -1,    -1,    -1,    -1,    -1,    -1,  1102,    -1,    -1,    -1,
  2678.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2679.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    44,
  2680.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2681.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2682.     65,   953,    -1,    -1,    10,    -1,    -1,    -1,    73,    74,
  2683.     75,    -1,    -1,   769,    -1,   771,    81,    82,    83,    -1,
  2684.     85,    -1,    -1,    88,    89,    -1,   782,    92,    93,    -1,
  2685.     -1,  1177,  1178,  1179,   986,    -1,    -1,    -1,    -1,   104,
  2686.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   999,  1000,    -1,
  2687.   1002,    57,    58,    59,    60,    61,    62,    63,    64,    65,
  2688.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  2689.     76,    77,    78,    79,    -1,  1221,    -1,    -1,  1030,    -1,
  2690.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,     1,    -1,
  2691.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2692.     13,    -1,    15,    16,    17,    18,    19,    20,    21,    22,
  2693.     23,    24,    25,    26,    27,    28,    29,    30,    31,   875,
  2694.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2695.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2696.     53,    54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,
  2697.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2698.     73,    74,    75,   919,   920,    -1,   922,    -1,    81,    82,
  2699.     83,    -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,
  2700.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2701.    103,   104,     1,    -1,     3,     4,     5,     6,     7,     8,
  2702.      9,    -1,    11,    12,    13,    -1,    15,    16,    17,    18,
  2703.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  2704.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2705.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2706.     49,    50,    51,    -1,    53,    54,    -1,    56,    -1,    -1,
  2707.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2708.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  2709.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2710.     -1,    90,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2711.     -1,    -1,    -1,    -1,   103,   104,     1,    -1,     3,     4,
  2712.      5,     6,     7,     8,     9,    -1,    11,    12,    13,    -1,
  2713.     15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  2714.     25,    26,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2715.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2716.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2717.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2718.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2719.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2720.     -1,    -1,    -1,    88,    -1,    90,    -1,    92,    -1,    -1,
  2721.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,   104,
  2722.      1,    -1,     3,     4,     5,     6,     7,     8,     9,    -1,
  2723.     11,    12,    13,    -1,    15,    16,    17,    18,    19,    20,
  2724.     21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  2725.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2726.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2727.     51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,    -1,
  2728.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  2729.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2730.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,    90,
  2731.     -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2732.     -1,    -1,   103,   104,     1,    -1,     3,     4,     5,     6,
  2733.      7,     8,     9,    -1,    11,    12,    13,    -1,    15,    16,
  2734.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2735.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2736.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2737.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2738.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2739.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2740.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2741.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2742.      7,     8,     9,    -1,    11,    12,    13,   104,    15,    16,
  2743.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2744.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2745.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2746.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2747.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2748.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2749.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2750.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2751.      7,     8,     9,    -1,    11,    12,    13,   104,    15,    16,
  2752.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2753.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2754.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2755.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2756.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2757.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2758.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2759.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2760.      7,     8,     9,    10,    11,    12,    -1,   104,    -1,    -1,
  2761.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2762.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2763.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2764.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  2765.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2766.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2767.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2768.     -1,    88,    -1,    -1,    -1,    92,    93,    -1,    -1,    -1,
  2769.     -1,    -1,    -1,    -1,    -1,   102,     1,   104,     3,     4,
  2770.     -1,     6,     7,     8,     9,    -1,    11,    12,    66,    67,
  2771.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2772.     78,    79,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2773.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2774.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2775.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2776.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2777.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2778.     -1,    -1,    -1,    88,    89,    -1,     1,    92,     3,     4,
  2779.     -1,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2780.     -1,    -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,
  2781.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2782.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2783.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2784.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2785.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2786.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2787.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2788.     -1,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2789.     -1,    -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,
  2790.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2791.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2792.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2793.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2794.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2795.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2796.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2797.      5,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2798.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2799.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2800.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2801.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2802.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2803.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2804.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,     1,
  2805.     -1,    -1,     4,    88,     6,     7,    -1,    92,    -1,    -1,
  2806.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,
  2807.     -1,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,
  2808.     -1,    -1,    -1,    35,    -1,    37,    38,    -1,    -1,    -1,
  2809.     -1,    -1,    44,    -1,    -1,    -1,    -1,    -1,    -1,    51,
  2810.     -1,    53,    -1,    55,    -1,    57,    58,    59,    -1,    61,
  2811.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  2812.     72,    73,    74,    75,    76,    77,    78,    -1,    -1,    81,
  2813.     82,    83,    -1,     1,    86,     3,     4,    89,     6,     7,
  2814.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,
  2815.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2816.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2817.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2818.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2819.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2820.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2821.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2822.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2823.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2824.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2825.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2826.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2827.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2828.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2829.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2830.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2831.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2832.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2833.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2834.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2835.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2836.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2837.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2838.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2839.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2840.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2841.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2842.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2843.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2844.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2845.     48,    49,    50,    51,    -1,    53,    -1,    -1,    56,    -1,
  2846.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2847.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2848.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2849.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2850.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2851.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2852.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2853.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2854.     48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,
  2855.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2856.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2857.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2858.     88,    -1,    -1,    -1,    92,    -1,    -1,    -1,    -1,    -1,
  2859.     -1,    -1,    -1,    -1,   102,     1,   104,     3,     4,    -1,
  2860.      6,     7,     8,     9,    -1,    11,    12,    67,    68,    69,
  2861.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  2862.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2863.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2864.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2865.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2866.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2867.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2868.     -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,    -1,
  2869.      6,     7,     8,     9,    -1,    11,    12,    -1,   104,    -1,
  2870.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2871.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2872.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2873.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2874.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2875.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2876.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2877.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  2878.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  2879.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  2880.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2881.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2882.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  2883.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2884.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  2885.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2886.     -1,    -1,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2887.     -1,    -1,    -1,    -1,    -1,   104,   105,     3,     4,     5,
  2888.      6,     7,     8,     9,    -1,    11,    12,    13,    -1,    15,
  2889.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2890.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2891.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2892.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2893.     56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2894.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2895.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2896.     -1,    -1,    88,    -1,    90,    -1,    92,    -1,    -1,    -1,
  2897.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,   104,     3,
  2898.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2899.     -1,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2900.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2901.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2902.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2903.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2904.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2905.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2906.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2907.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2908.    104,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2909.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2910.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2911.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2912.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2913.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2914.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2915.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2916.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2917.    104,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2918.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2919.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2920.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2921.     -1,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2922.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2923.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2924.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2925.      4,     5,     6,     7,     8,     9,    10,    11,    12,    -1,
  2926.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2927.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2928.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2929.     44,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2930.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2931.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2932.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2933.     -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,    93,
  2934.      3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
  2935.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2936.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2937.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2938.     43,    44,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2939.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  2940.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2941.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  2942.     83,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,
  2943.     93,     3,     4,    -1,     6,     7,     8,     9,    -1,    11,
  2944.     12,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2945.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2946.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2947.     42,    43,    44,    -1,    46,    47,    48,    49,    50,    51,
  2948.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2949.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  2950.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  2951.     82,    83,    -1,    85,    -1,    -1,    88,    89,     3,     4,
  2952.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  2953.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2954.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2955.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    44,
  2956.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  2957.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2958.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2959.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2960.     85,    -1,    -1,    88,    89,     3,     4,    -1,     6,     7,
  2961.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,
  2962.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2963.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2964.     38,    -1,    40,    41,    42,    43,    44,    -1,    46,    47,
  2965.     48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,
  2966.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2967.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2968.     -1,    -1,    -1,    81,    82,    83,    -1,    85,    -1,    -1,
  2969.     88,    89,     3,     4,    -1,     6,     7,     8,     9,    -1,
  2970.     11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,
  2971.     -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  2972.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2973.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2974.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2975.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    70,
  2976.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2977.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,
  2978.      4,    92,     6,     7,     8,     9,    -1,    11,    12,    -1,
  2979.     -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  2980.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2981.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2982.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2983.     -1,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2984.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2985.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2986.     -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,     6,
  2987.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  2988.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2989.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2990.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2991.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  2992.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2993.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2994.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2995.     -1,    88,    -1,     3,     4,    92,     6,     7,     8,     9,
  2996.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  2997.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2998.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2999.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3000.     50,    51,    -1,    53,    54,    -1,    -1,    -1,    -1,    -1,
  3001.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3002.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3003.     -1,    81,    82,    83,    -1,    -1,     3,     4,    88,     6,
  3004.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  3005.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3006.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  3007.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  3008.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  3009.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  3010.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  3011.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  3012.     -1,    88,    89,     3,     4,    -1,     6,     7,     8,     9,
  3013.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  3014.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3015.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3016.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3017.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  3018.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3019.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3020.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  3021.      3,     4,    92,     6,     7,     8,     9,    -1,    11,    12,
  3022.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3023.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3024.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3025.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3026.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  3027.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3028.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  3029.     83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,
  3030.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3031.     -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3032.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  3033.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3034.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3035.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3036.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3037.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3038.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  3039.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  3040.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3041.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3042.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3043.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3044.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3045.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3046.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  3047.     -1,     3,     4,    92,     6,     7,     8,     9,    -1,    11,
  3048.     12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3049.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3050.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3051.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  3052.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3053.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3054.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3055.     82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,
  3056.     92,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  3057.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3058.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  3059.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  3060.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  3061.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  3062.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  3063.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  3064.     -1,     3,     4,    88,     6,     7,     8,     9,    -1,    11,
  3065.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,
  3066.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3067.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3068.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  3069.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3070.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3071.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3072.     82,    83,    -1,    -1,     3,     4,    88,     6,     7,     8,
  3073.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  3074.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3075.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3076.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3077.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3078.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3079.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3080.     -1,    -1,    81,    82,    83,    -1,    -1,     3,     4,    88,
  3081.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3082.     -1,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3083.     -1,    27,    28,    -1,    -1,    31,    -1,    33,    -1,    35,
  3084.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3085.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3086.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3087.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3088.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3089.      3,     4,    88,     6,     7,     8,     9,    -1,    11,    12,
  3090.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,    -1,
  3091.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3092.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3093.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3094.     53,    -1,     3,     4,     5,     6,     7,    -1,    -1,    -1,
  3095.     -1,    12,    -1,    -1,    -1,    -1,    -1,     3,     4,     5,
  3096.      6,     7,    -1,    -1,    -1,    -1,    12,    -1,    81,    82,
  3097.     83,    -1,    -1,    -1,    35,    88,    -1,    -1,    -1,    92,
  3098.     41,    27,    -1,    44,    -1,    31,    -1,    -1,    -1,    35,
  3099.     51,   104,    53,    -1,    -1,    41,    -1,    -1,    -1,    -1,
  3100.     -1,    -1,    -1,    -1,    65,    51,    -1,    53,    -1,    -1,
  3101.     56,    -1,    -1,    -1,    75,    -1,    -1,    -1,    -1,    65,
  3102.     -1,    -1,    83,    -1,    85,    -1,    -1,    88,    89,    75,
  3103.     -1,     3,     4,     5,     6,     7,    -1,    83,    10,    -1,
  3104.     12,    -1,    88,    -1,    -1,    -1,    -1,    -1,     3,     4,
  3105.      5,     6,     7,    -1,    -1,    27,    -1,    12,    -1,    31,
  3106.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,
  3107.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    51,
  3108.     35,    53,    -1,    -1,    -1,    -1,    41,    -1,    -1,    -1,
  3109.     -1,    -1,    -1,    65,    -1,    -1,    51,    -1,    53,    -1,
  3110.     -1,    -1,    -1,    75,    -1,    60,    -1,    -1,    -1,    -1,
  3111.     65,    83,    -1,    -1,    -1,    -1,    88,    -1,    -1,    -1,
  3112.     75,     3,     4,     5,     6,     7,    -1,    -1,    83,    -1,
  3113.     12,    -1,    -1,    88,    -1,    -1,    -1,    -1,     3,     4,
  3114.      5,     6,     7,    -1,    -1,    27,    -1,    12,    -1,    31,
  3115.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,
  3116.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    51,
  3117.     35,    53,    -1,    -1,    56,    -1,    41,    -1,    -1,    -1,
  3118.     -1,    -1,     4,    65,     6,     7,    51,    -1,    53,    -1,
  3119.     12,    -1,    -1,    75,    -1,    -1,    -1,    -1,    -1,    -1,
  3120.     65,    83,    -1,    -1,    -1,    27,    88,    -1,    -1,    31,
  3121.     75,    -1,    -1,    35,    -1,    -1,    -1,    -1,    83,    -1,
  3122.     -1,    -1,    44,    88,    -1,    -1,    -1,    -1,    -1,    51,
  3123.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3124.     57,    58,    59,    65,    61,    62,    63,    64,    65,    66,
  3125.     67,    68,    69,    75,    71,    72,    73,    74,    75,    76,
  3126.     77,    78,    79,    85,    -1,    -1,    88,    89,    57,    58,
  3127.     59,    -1,    61,    62,    63,    64,    65,    66,    67,    68,
  3128.     69,    70,    71,    72,    73,    74,    75,    76,    77,    78,
  3129.     79,    55,    32,    57,    58,    59,    -1,    61,    62,    63,
  3130.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3131.     74,    75,    76,    77,    78,    79,   105,    57,    58,    59,
  3132.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3133.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3134.     57,    58,    59,    60,    61,    62,    63,    64,    65,    66,
  3135.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  3136.     77,    78,    79,    57,    58,    59,    60,    61,    62,    63,
  3137.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3138.     74,    75,    76,    77,    78,    79,    57,    58,    59,    -1,
  3139.     61,    62,    63,    64,    65,    66,    67,    68,    69,    70,
  3140.     71,    72,    73,    74,    75,    76,    77,    78,    79,    59,
  3141.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3142.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3143.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  3144.     72,    73,    74,    75,    76,    77,    78,    79,    64,    65,
  3145.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  3146.     76,    77,    78,    79,    65,    66,    67,    68,    69,    70,
  3147.     71,    72,    73,    74,    75,    76,    77,    78,    79
  3148. };
  3149. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  3150. #line 3 "bison.simple"
  3151.  
  3152. /* Skeleton output parser for bison,
  3153.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  3154.  
  3155.    This program is free software; you can redistribute it and/or modify
  3156.    it under the terms of the GNU General Public License as published by
  3157.    the Free Software Foundation; either version 1, or (at your option)
  3158.    any later version.
  3159.  
  3160.    This program is distributed in the hope that it will be useful,
  3161.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  3162.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  3163.    GNU General Public License for more details.
  3164.  
  3165.    You should have received a copy of the GNU General Public License
  3166.    along with this program; if not, write to the Free Software
  3167.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  3168.  
  3169.  
  3170. #ifndef alloca
  3171. #ifdef __GNUC__
  3172. #define alloca __builtin_alloca
  3173. #else /* not GNU C.  */
  3174. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  3175. #include <alloca.h>
  3176. #else /* not sparc */
  3177. #if defined (MSDOS) && !defined (__TURBOC__)
  3178. #include <malloc.h>
  3179. #else /* not MSDOS, or __TURBOC__ */
  3180. #if defined(_AIX)
  3181. #include <malloc.h>
  3182.  #pragma alloca
  3183. #else /* not MSDOS, __TURBOC__, or _AIX */
  3184. #ifdef __hpux
  3185. #ifdef __cplusplus
  3186. extern "C" {
  3187. void *alloca (unsigned int);
  3188. };
  3189. #else /* not __cplusplus */
  3190. void *alloca ();
  3191. #endif /* not __cplusplus */
  3192. #endif /* __hpux */
  3193. #endif /* not _AIX */
  3194. #endif /* not MSDOS, or __TURBOC__ */
  3195. #endif /* not sparc.  */
  3196. #endif /* not GNU C.  */
  3197. #endif /* alloca not defined.  */
  3198.  
  3199. /* This is the parser code that is written into each bison parser
  3200.   when the %semantic_parser declaration is not specified in the grammar.
  3201.   It was written by Richard Stallman by simplifying the hairy parser
  3202.   used when %semantic_parser is specified.  */
  3203.  
  3204. /* Note: there must be only one dollar sign in this file.
  3205.    It is replaced by the list of actions, each action
  3206.    as one case of the switch.  */
  3207.  
  3208. #define yyerrok        (yyerrstatus = 0)
  3209. #define yyclearin    (yychar = YYEMPTY)
  3210. #define YYEMPTY        -2
  3211. #define YYEOF        0
  3212. #define YYACCEPT    return(0)
  3213. #define YYABORT     return(1)
  3214. #define YYERROR        goto yyerrlab1
  3215. /* Like YYERROR except do call yyerror.
  3216.    This remains here temporarily to ease the
  3217.    transition to the new meaning of YYERROR, for GCC.
  3218.    Once GCC version 2 has supplanted version 1, this can go.  */
  3219. #define YYFAIL        goto yyerrlab
  3220. #define YYRECOVERING()  (!!yyerrstatus)
  3221. #define YYBACKUP(token, value) \
  3222. do                                \
  3223.   if (yychar == YYEMPTY && yylen == 1)                \
  3224.     { yychar = (token), yylval = (value);            \
  3225.       yychar1 = YYTRANSLATE (yychar);                \
  3226.       YYPOPSTACK;                        \
  3227.       goto yybackup;                        \
  3228.     }                                \
  3229.   else                                \
  3230.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  3231. while (0)
  3232.  
  3233. #define YYTERROR    1
  3234. #define YYERRCODE    256
  3235.  
  3236. #ifndef YYPURE
  3237. #define YYLEX        yylex()
  3238. #endif
  3239.  
  3240. #ifdef YYPURE
  3241. #ifdef YYLSP_NEEDED
  3242. #define YYLEX        yylex(&yylval, &yylloc)
  3243. #else
  3244. #define YYLEX        yylex(&yylval)
  3245. #endif
  3246. #endif
  3247.  
  3248. /* If nonreentrant, generate the variables here */
  3249.  
  3250. #ifndef YYPURE
  3251.  
  3252. int    yychar;            /*  the lookahead symbol        */
  3253. YYSTYPE    yylval;            /*  the semantic value of the        */
  3254.                 /*  lookahead symbol            */
  3255.  
  3256. #ifdef YYLSP_NEEDED
  3257. YYLTYPE yylloc;            /*  location data for the lookahead    */
  3258.                 /*  symbol                */
  3259. #endif
  3260.  
  3261. int yynerrs;            /*  number of parse errors so far       */
  3262. #endif  /* not YYPURE */
  3263.  
  3264. #if YYDEBUG != 0
  3265. int yydebug;            /*  nonzero means print parse trace    */
  3266. /* Since this is uninitialized, it does not stop multiple parsers
  3267.    from coexisting.  */
  3268. #endif
  3269.  
  3270. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  3271.  
  3272. #ifndef    YYINITDEPTH
  3273. #define YYINITDEPTH 200
  3274. #endif
  3275.  
  3276. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  3277.     (effective only if the built-in stack extension method is used).  */
  3278.  
  3279. #if YYMAXDEPTH == 0
  3280. #undef YYMAXDEPTH
  3281. #endif
  3282.  
  3283. #ifndef YYMAXDEPTH
  3284. #define YYMAXDEPTH 10000
  3285. #endif
  3286.  
  3287. /* Prevent warning if -Wstrict-prototypes.  */
  3288. #ifdef __GNUC__
  3289. int yyparse (void);
  3290. #endif
  3291.  
  3292. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  3293. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  3294. #else                /* not GNU C or C++ */
  3295. #ifndef __cplusplus
  3296.  
  3297. /* This is the most reliable way to avoid incompatibilities
  3298.    in available built-in functions on various systems.  */
  3299. static void
  3300. __yy_bcopy (from, to, count)
  3301.      char *from;
  3302.      char *to;
  3303.      int count;
  3304. {
  3305.   register char *f = from;
  3306.   register char *t = to;
  3307.   register int i = count;
  3308.  
  3309.   while (i-- > 0)
  3310.     *t++ = *f++;
  3311. }
  3312.  
  3313. #else /* __cplusplus */
  3314.  
  3315. /* This is the most reliable way to avoid incompatibilities
  3316.    in available built-in functions on various systems.  */
  3317. static void
  3318. __yy_bcopy (char *from, char *to, int count)
  3319. {
  3320.   register char *f = from;
  3321.   register char *t = to;
  3322.   register int i = count;
  3323.  
  3324.   while (i-- > 0)
  3325.     *t++ = *f++;
  3326. }
  3327.  
  3328. #endif
  3329. #endif
  3330.  
  3331. #line 184 "bison.simple"
  3332. int
  3333. yyparse()
  3334. {
  3335.   register int yystate;
  3336.   register int yyn;
  3337.   register short *yyssp;
  3338.   register YYSTYPE *yyvsp;
  3339.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  3340.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  3341.  
  3342.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  3343.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  3344.  
  3345.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  3346.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  3347.  
  3348. #ifdef YYLSP_NEEDED
  3349.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  3350.   YYLTYPE *yyls = yylsa;
  3351.   YYLTYPE *yylsp;
  3352.  
  3353. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  3354. #else
  3355. #define YYPOPSTACK   (yyvsp--, yyssp--)
  3356. #endif
  3357.  
  3358.   int yystacksize = YYINITDEPTH;
  3359.  
  3360. #ifdef YYPURE
  3361.   int yychar;
  3362.   YYSTYPE yylval;
  3363.   int yynerrs;
  3364. #ifdef YYLSP_NEEDED
  3365.   YYLTYPE yylloc;
  3366. #endif
  3367. #endif
  3368.  
  3369.   YYSTYPE yyval;        /*  the variable used to return        */
  3370.                 /*  semantic values from the action    */
  3371.                 /*  routines                */
  3372.  
  3373.   int yylen;
  3374.  
  3375. #if YYDEBUG != 0
  3376.   if (yydebug)
  3377.     fprintf(stderr, "Starting parse\n");
  3378. #endif
  3379.  
  3380.   yystate = 0;
  3381.   yyerrstatus = 0;
  3382.   yynerrs = 0;
  3383.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  3384.  
  3385.   /* Initialize stack pointers.
  3386.      Waste one element of value and location stack
  3387.      so that they stay on the same level as the state stack.
  3388.      The wasted elements are never initialized.  */
  3389.  
  3390.   yyssp = yyss - 1;
  3391.   yyvsp = yyvs;
  3392. #ifdef YYLSP_NEEDED
  3393.   yylsp = yyls;
  3394. #endif
  3395.  
  3396. /* Push a new state, which is found in  yystate  .  */
  3397. /* In all cases, when you get here, the value and location stacks
  3398.    have just been pushed. so pushing a state here evens the stacks.  */
  3399. yynewstate:
  3400.  
  3401.   *++yyssp = yystate;
  3402.  
  3403.   if (yyssp >= yyss + yystacksize - 1)
  3404.     {
  3405.       /* Give user a chance to reallocate the stack */
  3406.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  3407.       YYSTYPE *yyvs1 = yyvs;
  3408.       short *yyss1 = yyss;
  3409. #ifdef YYLSP_NEEDED
  3410.       YYLTYPE *yyls1 = yyls;
  3411. #endif
  3412.  
  3413.       /* Get the current used size of the three stacks, in elements.  */
  3414.       int size = yyssp - yyss + 1;
  3415.  
  3416. #ifdef yyoverflow
  3417.       /* Each stack pointer address is followed by the size of
  3418.      the data in use in that stack, in bytes.  */
  3419. #ifdef YYLSP_NEEDED
  3420.       /* This used to be a conditional around just the two extra args,
  3421.      but that might be undefined if yyoverflow is a macro.  */
  3422.       yyoverflow("parser stack overflow",
  3423.          &yyss1, size * sizeof (*yyssp),
  3424.          &yyvs1, size * sizeof (*yyvsp),
  3425.          &yyls1, size * sizeof (*yylsp),
  3426.          &yystacksize);
  3427. #else
  3428.       yyoverflow("parser stack overflow",
  3429.          &yyss1, size * sizeof (*yyssp),
  3430.          &yyvs1, size * sizeof (*yyvsp),
  3431.          &yystacksize);
  3432. #endif
  3433.  
  3434.       yyss = yyss1; yyvs = yyvs1;
  3435. #ifdef YYLSP_NEEDED
  3436.       yyls = yyls1;
  3437. #endif
  3438. #else /* no yyoverflow */
  3439.       /* Extend the stack our own way.  */
  3440.       if (yystacksize >= YYMAXDEPTH)
  3441.     {
  3442.       yyerror("parser stack overflow");
  3443.       return 2;
  3444.     }
  3445.       yystacksize *= 2;
  3446.       if (yystacksize > YYMAXDEPTH)
  3447.     yystacksize = YYMAXDEPTH;
  3448.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  3449.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  3450.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  3451.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  3452. #ifdef YYLSP_NEEDED
  3453.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  3454.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  3455. #endif
  3456. #endif /* no yyoverflow */
  3457.  
  3458.       yyssp = yyss + size - 1;
  3459.       yyvsp = yyvs + size - 1;
  3460. #ifdef YYLSP_NEEDED
  3461.       yylsp = yyls + size - 1;
  3462. #endif
  3463.  
  3464. #if YYDEBUG != 0
  3465.       if (yydebug)
  3466.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  3467. #endif
  3468.  
  3469.       if (yyssp >= yyss + yystacksize - 1)
  3470.     YYABORT;
  3471.     }
  3472.  
  3473. #if YYDEBUG != 0
  3474.   if (yydebug)
  3475.     fprintf(stderr, "Entering state %d\n", yystate);
  3476. #endif
  3477.  
  3478.   goto yybackup;
  3479.  yybackup:
  3480.  
  3481. /* Do appropriate processing given the current state.  */
  3482. /* Read a lookahead token if we need one and don't already have one.  */
  3483. /* yyresume: */
  3484.  
  3485.   /* First try to decide what to do without reference to lookahead token.  */
  3486.  
  3487.   yyn = yypact[yystate];
  3488.   if (yyn == YYFLAG)
  3489.     goto yydefault;
  3490.  
  3491.   /* Not known => get a lookahead token if don't already have one.  */
  3492.  
  3493.   /* yychar is either YYEMPTY or YYEOF
  3494.      or a valid token in external form.  */
  3495.  
  3496.   if (yychar == YYEMPTY)
  3497.     {
  3498. #if YYDEBUG != 0
  3499.       if (yydebug)
  3500.     fprintf(stderr, "Reading a token: ");
  3501. #endif
  3502.       yychar = YYLEX;
  3503.     }
  3504.  
  3505.   /* Convert token to internal form (in yychar1) for indexing tables with */
  3506.  
  3507.   if (yychar <= 0)        /* This means end of input. */
  3508.     {
  3509.       yychar1 = 0;
  3510.       yychar = YYEOF;        /* Don't call YYLEX any more */
  3511.  
  3512. #if YYDEBUG != 0
  3513.       if (yydebug)
  3514.     fprintf(stderr, "Now at end of input.\n");
  3515. #endif
  3516.     }
  3517.   else
  3518.     {
  3519.       yychar1 = YYTRANSLATE(yychar);
  3520.  
  3521. #if YYDEBUG != 0
  3522.       if (yydebug)
  3523.     {
  3524.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  3525.       /* Give the individual parser a way to print the precise meaning
  3526.          of a token, for further debugging info.  */
  3527. #ifdef YYPRINT
  3528.       YYPRINT (stderr, yychar, yylval);
  3529. #endif
  3530.       fprintf (stderr, ")\n");
  3531.     }
  3532. #endif
  3533.     }
  3534.  
  3535.   yyn += yychar1;
  3536.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  3537.     goto yydefault;
  3538.  
  3539.   yyn = yytable[yyn];
  3540.  
  3541.   /* yyn is what to do for this token type in this state.
  3542.      Negative => reduce, -yyn is rule number.
  3543.      Positive => shift, yyn is new state.
  3544.        New state is final state => don't bother to shift,
  3545.        just return success.
  3546.      0, or most negative number => error.  */
  3547.  
  3548.   if (yyn < 0)
  3549.     {
  3550.       if (yyn == YYFLAG)
  3551.     goto yyerrlab;
  3552.       yyn = -yyn;
  3553.       goto yyreduce;
  3554.     }
  3555.   else if (yyn == 0)
  3556.     goto yyerrlab;
  3557.  
  3558.   if (yyn == YYFINAL)
  3559.     YYACCEPT;
  3560.  
  3561.   /* Shift the lookahead token.  */
  3562.  
  3563. #if YYDEBUG != 0
  3564.   if (yydebug)
  3565.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  3566. #endif
  3567.  
  3568.   /* Discard the token being shifted unless it is eof.  */
  3569.   if (yychar != YYEOF)
  3570.     yychar = YYEMPTY;
  3571.  
  3572.   *++yyvsp = yylval;
  3573. #ifdef YYLSP_NEEDED
  3574.   *++yylsp = yylloc;
  3575. #endif
  3576.  
  3577.   /* count tokens shifted since error; after three, turn off error status.  */
  3578.   if (yyerrstatus) yyerrstatus--;
  3579.  
  3580.   yystate = yyn;
  3581.   goto yynewstate;
  3582.  
  3583. /* Do the default action for the current state.  */
  3584. yydefault:
  3585.  
  3586.   yyn = yydefact[yystate];
  3587.   if (yyn == 0)
  3588.     goto yyerrlab;
  3589.  
  3590. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  3591. yyreduce:
  3592.   yylen = yyr2[yyn];
  3593.   if (yylen > 0)
  3594.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  3595.  
  3596. #if YYDEBUG != 0
  3597.   if (yydebug)
  3598.     {
  3599.       int i;
  3600.  
  3601.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  3602.            yyn, yyrline[yyn]);
  3603.  
  3604.       /* Print the symbols being reduced, and their result.  */
  3605.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  3606.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  3607.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  3608.     }
  3609. #endif
  3610.  
  3611.  
  3612.   switch (yyn) {
  3613.  
  3614. case 2:
  3615. #line 294 "parse.y"
  3616. {
  3617.           /* In case there were missing closebraces,
  3618.              get us back to the global binding level.  */
  3619.           while (! global_bindings_p ())
  3620.             poplevel (0, 0, 0);
  3621.           finish_file ();
  3622.         ;
  3623.     break;}
  3624. case 3:
  3625. #line 308 "parse.y"
  3626. { yyval.ttype = NULL_TREE; ;
  3627.     break;}
  3628. case 4:
  3629. #line 309 "parse.y"
  3630. { yyval.ttype = NULL_TREE; ;
  3631.     break;}
  3632. case 5:
  3633. #line 311 "parse.y"
  3634. { yyval.ttype = NULL_TREE; ;
  3635.     break;}
  3636. case 6:
  3637. #line 315 "parse.y"
  3638. { have_extern_spec = 1;
  3639.           used_extern_spec = 0;
  3640.           yyval.ttype = NULL_TREE; ;
  3641.     break;}
  3642. case 7:
  3643. #line 320 "parse.y"
  3644. { have_extern_spec = 0; ;
  3645.     break;}
  3646. case 10:
  3647. #line 329 "parse.y"
  3648. { if (pending_lang_change) do_pending_lang_change(); ;
  3649.     break;}
  3650. case 11:
  3651. #line 331 "parse.y"
  3652. { if (! global_bindings_p () && ! pseudo_global_level_p())
  3653.           pop_everything (); ;
  3654.     break;}
  3655. case 12:
  3656. #line 337 "parse.y"
  3657. { if (pending_inlines) do_pending_inlines (); ;
  3658.     break;}
  3659. case 13:
  3660. #line 339 "parse.y"
  3661. { if (pending_inlines) do_pending_inlines (); ;
  3662.     break;}
  3663. case 14:
  3664. #line 341 "parse.y"
  3665. { if (pending_inlines) do_pending_inlines (); ;
  3666.     break;}
  3667. case 16:
  3668. #line 344 "parse.y"
  3669. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  3670.           assemble_asm (yyvsp[-2].ttype); ;
  3671.     break;}
  3672. case 17:
  3673. #line 347 "parse.y"
  3674. { pop_lang_context (); ;
  3675.     break;}
  3676. case 18:
  3677. #line 349 "parse.y"
  3678. { pop_lang_context (); ;
  3679.     break;}
  3680. case 19:
  3681. #line 351 "parse.y"
  3682. { if (pending_inlines) do_pending_inlines ();
  3683.           pop_lang_context (); ;
  3684.     break;}
  3685. case 20:
  3686. #line 354 "parse.y"
  3687. { if (pending_inlines) do_pending_inlines ();
  3688.           pop_lang_context (); ;
  3689.     break;}
  3690. case 21:
  3691. #line 360 "parse.y"
  3692. { push_lang_context (yyvsp[0].ttype); ;
  3693.     break;}
  3694. case 22:
  3695. #line 365 "parse.y"
  3696. { begin_template_parm_list (); ;
  3697.     break;}
  3698. case 23:
  3699. #line 367 "parse.y"
  3700. { yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
  3701.     break;}
  3702. case 24:
  3703. #line 372 "parse.y"
  3704. { yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
  3705.     break;}
  3706. case 25:
  3707. #line 374 "parse.y"
  3708. { yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3709.     break;}
  3710. case 26:
  3711. #line 379 "parse.y"
  3712.           yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
  3713.          ttpa:
  3714.           if (TREE_PURPOSE (yyval.ttype) == signature_type_node)
  3715.             sorry ("signature as template type parameter");
  3716.           else if (TREE_PURPOSE (yyval.ttype) != class_type_node)
  3717.             pedwarn ("template type parameters must use the keyword `class'");
  3718.         ;
  3719.     break;}
  3720. case 27:
  3721. #line 388 "parse.y"
  3722. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); goto ttpa; ;
  3723.     break;}
  3724. case 28:
  3725. #line 400 "parse.y"
  3726. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  3727.     break;}
  3728. case 29:
  3729. #line 402 "parse.y"
  3730. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  3731.     break;}
  3732. case 31:
  3733. #line 408 "parse.y"
  3734. { warning ("use of `overload' is an anachronism"); ;
  3735.     break;}
  3736. case 32:
  3737. #line 412 "parse.y"
  3738. { declare_overloaded (yyvsp[0].ttype); ;
  3739.     break;}
  3740. case 33:
  3741. #line 414 "parse.y"
  3742. { declare_overloaded (yyvsp[0].ttype); ;
  3743.     break;}
  3744. case 34:
  3745. #line 421 "parse.y"
  3746. { yychar = '{'; goto template1; ;
  3747.     break;}
  3748. case 36:
  3749. #line 424 "parse.y"
  3750. { yychar = '{'; goto template1; ;
  3751.     break;}
  3752. case 38:
  3753. #line 427 "parse.y"
  3754. { yychar = ':'; goto template1; ;
  3755.     break;}
  3756. case 40:
  3757. #line 430 "parse.y"
  3758. {
  3759.           yychar = ':';
  3760.         template1:
  3761.           if (current_aggr == exception_type_node)
  3762.             error ("template type must define an aggregate or union");
  3763.           else if (current_aggr == signature_type_node)
  3764.             sorry ("template type defining a signature");
  3765.           /* Maybe pedantic warning for union?
  3766.              How about an enum? :-)  */
  3767.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 1);
  3768.           reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
  3769.           yychar = YYEMPTY;
  3770.         ;
  3771.     break;}
  3772. case 42:
  3773. #line 445 "parse.y"
  3774. {
  3775.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3776.           /* declare $2 as template name with $1 parm list */
  3777.         ;
  3778.     break;}
  3779. case 43:
  3780. #line 450 "parse.y"
  3781. {
  3782.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3783.           /* declare $2 as template name with $1 parm list */
  3784.         ;
  3785.     break;}
  3786. case 44:
  3787. #line 457 "parse.y"
  3788. {
  3789.           tree d;
  3790.           int momentary;
  3791.           int def = (yyvsp[0].itype != ';');
  3792.           momentary = suspend_momentary ();
  3793.           d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/NULL_TREE, 0,
  3794.                   yyvsp[-3].ttype);
  3795.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3796.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3797.           end_template_decl (yyvsp[-5].ttype, d, 0, def);
  3798.           if (def)
  3799.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-5].ttype, d);
  3800.           resume_momentary (momentary);
  3801.         ;
  3802.     break;}
  3803. case 45:
  3804. #line 474 "parse.y"
  3805. {
  3806.           tree d;
  3807.           int momentary;
  3808.           int def = (yyvsp[0].itype != ';');
  3809.  
  3810.           current_declspecs = yyvsp[-5].ttype;
  3811.           momentary = suspend_momentary ();
  3812.           d = start_decl (yyvsp[-4].ttype, current_declspecs,
  3813.                   0, yyvsp[-3].ttype);
  3814.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3815.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3816.           end_template_decl (yyvsp[-6].ttype, d, 0, def);
  3817.           if (def)
  3818.             {
  3819.               reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-6].ttype, d);
  3820.               yychar = YYEMPTY;
  3821.             }
  3822.           note_list_got_semicolon (yyvsp[-5].ttype);
  3823.           resume_momentary (momentary);
  3824.         ;
  3825.     break;}
  3826. case 46:
  3827. #line 495 "parse.y"
  3828. {
  3829.           int def = (yyvsp[0].itype != ';');
  3830.           tree d = start_decl (yyvsp[-1].ttype, yyvsp[-2].ttype, 0, NULL_TREE);
  3831.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3832.           end_template_decl (yyvsp[-3].ttype, d, 0, def);
  3833.           if (def)
  3834.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-3].ttype, d);
  3835.         ;
  3836.     break;}
  3837. case 47:
  3838. #line 504 "parse.y"
  3839. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3840.     break;}
  3841. case 48:
  3842. #line 505 "parse.y"
  3843. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3844.     break;}
  3845. case 49:
  3846. #line 508 "parse.y"
  3847. { yyval.itype = '{'; ;
  3848.     break;}
  3849. case 50:
  3850. #line 509 "parse.y"
  3851. { yyval.itype = ':'; ;
  3852.     break;}
  3853. case 51:
  3854. #line 510 "parse.y"
  3855. { yyval.itype = ';'; ;
  3856.     break;}
  3857. case 52:
  3858. #line 511 "parse.y"
  3859. { yyval.itype = '='; ;
  3860.     break;}
  3861. case 53:
  3862. #line 512 "parse.y"
  3863. { yyval.itype = RETURN; ;
  3864.     break;}
  3865. case 54:
  3866. #line 517 "parse.y"
  3867. {;
  3868.     break;}
  3869. case 55:
  3870. #line 519 "parse.y"
  3871. {;
  3872.     break;}
  3873. case 56:
  3874. #line 522 "parse.y"
  3875. { tree d;
  3876.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3877.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3878.         ;
  3879.     break;}
  3880. case 57:
  3881. #line 527 "parse.y"
  3882. {
  3883.           note_list_got_semicolon (yyval.ttype);
  3884.         ;
  3885.     break;}
  3886. case 58:
  3887. #line 532 "parse.y"
  3888. { tree d;
  3889.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3890.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3891.           note_list_got_semicolon (yyval.ttype);
  3892.         ;
  3893.     break;}
  3894. case 59:
  3895. #line 538 "parse.y"
  3896. { pedwarn ("empty declaration"); ;
  3897.     break;}
  3898. case 61:
  3899. #line 541 "parse.y"
  3900. {
  3901.         tree t = yyval.ttype;
  3902.         shadow_tag (t);
  3903.         if (TREE_CODE (t) == TREE_LIST
  3904.         && TREE_PURPOSE (t) == NULL_TREE)
  3905.           {
  3906.         t = TREE_VALUE (t);
  3907.         if (IS_AGGR_TYPE (t)
  3908.             && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
  3909.           {
  3910.             if (CLASSTYPE_USE_TEMPLATE (t) == 0)
  3911.               SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
  3912.             else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
  3913.               error ("override declaration for already-expanded template");
  3914.           }
  3915.           }
  3916.         note_list_got_semicolon (yyval.ttype);
  3917.       ;
  3918.     break;}
  3919. case 65:
  3920. #line 566 "parse.y"
  3921. {
  3922.           finish_function (lineno, 1);
  3923.           /* finish_function performs these three statements:
  3924.  
  3925.              expand_end_bindings (getdecls (), 1, 0);
  3926.              poplevel (1, 1, 0);
  3927.  
  3928.              expand_end_bindings (0, 0, 0);
  3929.              poplevel (0, 0, 1);
  3930.              */
  3931.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3932.         ;
  3933.     break;}
  3934. case 66:
  3935. #line 579 "parse.y"
  3936. {
  3937.           finish_function (lineno, 1);
  3938.           /* finish_function performs these three statements:
  3939.  
  3940.              expand_end_bindings (getdecls (), 1, 0);
  3941.              poplevel (1, 1, 0);
  3942.  
  3943.              expand_end_bindings (0, 0, 0);
  3944.              poplevel (0, 0, 1);
  3945.              */
  3946.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3947.         ;
  3948.     break;}
  3949. case 67:
  3950. #line 592 "parse.y"
  3951. { finish_function (lineno, 0);
  3952.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3953.     break;}
  3954. case 68:
  3955. #line 595 "parse.y"
  3956. { finish_function (lineno, 0);
  3957.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3958.     break;}
  3959. case 69:
  3960. #line 598 "parse.y"
  3961. { finish_function (lineno, 0);
  3962.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3963.     break;}
  3964. case 70:
  3965. #line 601 "parse.y"
  3966. {;
  3967.     break;}
  3968. case 71:
  3969. #line 603 "parse.y"
  3970. {;
  3971.     break;}
  3972. case 72:
  3973. #line 605 "parse.y"
  3974. {;
  3975.     break;}
  3976. case 73:
  3977. #line 610 "parse.y"
  3978. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  3979.             YYERROR1;
  3980.           reinit_parse_for_function ();
  3981.           yyval.ttype = NULL_TREE; ;
  3982.     break;}
  3983. case 74:
  3984. #line 615 "parse.y"
  3985. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  3986.             YYERROR1;
  3987.           reinit_parse_for_function ();
  3988.           yyval.ttype = NULL_TREE; ;
  3989.     break;}
  3990. case 75:
  3991. #line 620 "parse.y"
  3992. { if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, 0))
  3993.             YYERROR1;
  3994.           reinit_parse_for_function ();
  3995.           yyval.ttype = NULL_TREE; ;
  3996.     break;}
  3997. case 76:
  3998. #line 625 "parse.y"
  3999. { start_function (NULL_TREE, TREE_VALUE (yyval.ttype), NULL_TREE, 1);
  4000.           reinit_parse_for_function (); ;
  4001.     break;}
  4002. case 77:
  4003. #line 633 "parse.y"
  4004. {
  4005.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-5].ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
  4006.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-5].ttype), yyval.ttype, yyvsp[0].ttype);
  4007.          rest_of_mdef:
  4008.           if (! yyval.ttype)
  4009.             YYERROR1;
  4010.           if (yychar == YYEMPTY)
  4011.             yychar = YYLEX;
  4012.           reinit_parse_for_method (yychar, yyval.ttype); ;
  4013.     break;}
  4014. case 78:
  4015. #line 643 "parse.y"
  4016. {
  4017.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-3].ttype),
  4018.                      empty_parms (), yyvsp[-1].ttype);
  4019.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-3].ttype), yyval.ttype, yyvsp[0].ttype);
  4020.           goto rest_of_mdef;
  4021.         ;
  4022.     break;}
  4023. case 79:
  4024. #line 650 "parse.y"
  4025. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4026.     break;}
  4027. case 80:
  4028. #line 652 "parse.y"
  4029. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4030.     break;}
  4031. case 81:
  4032. #line 654 "parse.y"
  4033. { yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4034.     break;}
  4035. case 82:
  4036. #line 658 "parse.y"
  4037. {
  4038.           if (! current_function_parms_stored)
  4039.             store_parm_decls ();
  4040.           yyval.ttype = yyvsp[0].ttype;
  4041.         ;
  4042.     break;}
  4043. case 83:
  4044. #line 666 "parse.y"
  4045. { store_return_init (yyval.ttype, NULL_TREE); ;
  4046.     break;}
  4047. case 84:
  4048. #line 668 "parse.y"
  4049. { store_return_init (yyval.ttype, yyvsp[0].ttype); ;
  4050.     break;}
  4051. case 85:
  4052. #line 670 "parse.y"
  4053. { store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
  4054.     break;}
  4055. case 86:
  4056. #line 672 "parse.y"
  4057. { store_return_init (yyval.ttype, NULL_TREE); ;
  4058.     break;}
  4059. case 87:
  4060. #line 677 "parse.y"
  4061. {
  4062.           if (yyvsp[0].itype == 0)
  4063.             error ("no base initializers given following ':'");
  4064.           setup_vtbl_ptr ();
  4065.           /* Always keep the BLOCK node associated with the outermost
  4066.              pair of curley braces of a function.  These are needed
  4067.              for correct operation of dwarfout.c.  */
  4068.           keep_next_level ();
  4069.         ;
  4070.     break;}
  4071. case 88:
  4072. #line 690 "parse.y"
  4073. {
  4074.           if (! current_function_parms_stored)
  4075.             store_parm_decls ();
  4076.  
  4077.           /* Flag that we are processing base and member initializers.  */
  4078.           current_vtable_decl = error_mark_node;
  4079.  
  4080.           if (DECL_CONSTRUCTOR_P (current_function_decl))
  4081.             {
  4082.               /* Make a contour for the initializer list.  */
  4083.               pushlevel (0);
  4084.               clear_last_expr ();
  4085.               expand_start_bindings (0);
  4086.             }
  4087.           else if (current_class_type == NULL_TREE)
  4088.             error ("base initializers not allowed for non-member functions");
  4089.           else if (! DECL_CONSTRUCTOR_P (current_function_decl))
  4090.             error ("only constructors take base initializers");
  4091.         ;
  4092.     break;}
  4093. case 89:
  4094. #line 713 "parse.y"
  4095. { yyval.itype = 0; ;
  4096.     break;}
  4097. case 90:
  4098. #line 715 "parse.y"
  4099. { yyval.itype = 1; ;
  4100.     break;}
  4101. case 93:
  4102. #line 721 "parse.y"
  4103. {
  4104.           if (current_class_name && !flag_traditional)
  4105.             pedwarn ("anachronistic old style base class initializer");
  4106.           expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
  4107.         ;
  4108.     break;}
  4109. case 94:
  4110. #line 727 "parse.y"
  4111. {
  4112.           if (current_class_name && !flag_traditional)
  4113.             pedwarn ("anachronistic old style base class initializer");
  4114.           expand_member_init (C_C_D, NULL_TREE, void_type_node);
  4115.         ;
  4116.     break;}
  4117. case 95:
  4118. #line 733 "parse.y"
  4119. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4120.     break;}
  4121. case 96:
  4122. #line 735 "parse.y"
  4123. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4124.     break;}
  4125. case 97:
  4126. #line 737 "parse.y"
  4127. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4128.     break;}
  4129. case 98:
  4130. #line 739 "parse.y"
  4131. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4132.     break;}
  4133. case 99:
  4134. #line 742 "parse.y"
  4135. {
  4136.           do_member_init (OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  4137.         ;
  4138.     break;}
  4139. case 100:
  4140. #line 746 "parse.y"
  4141. {
  4142.           do_member_init (OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), void_type_node);
  4143.         ;
  4144.     break;}
  4145. case 109:
  4146. #line 770 "parse.y"
  4147. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, NULL_TREE); ;
  4148.     break;}
  4149. case 110:
  4150. #line 772 "parse.y"
  4151. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ;
  4152.     break;}
  4153. case 111:
  4154. #line 774 "parse.y"
  4155. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, yyvsp[-3].ttype); ;
  4156.     break;}
  4157. case 112:
  4158. #line 776 "parse.y"
  4159. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype); ;
  4160.     break;}
  4161. case 113:
  4162. #line 781 "parse.y"
  4163. { if (yyvsp[0].ttype) yyval.ttype = yyvsp[0].ttype; ;
  4164.     break;}
  4165. case 114:
  4166. #line 786 "parse.y"
  4167. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4168.     break;}
  4169. case 115:
  4170. #line 788 "parse.y"
  4171. { yyval.ttype = lookup_template_class (yyval.ttype, NULL_TREE, NULL_TREE); ;
  4172.     break;}
  4173. case 116:
  4174. #line 790 "parse.y"
  4175. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4176.     break;}
  4177. case 117:
  4178. #line 795 "parse.y"
  4179. { yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
  4180.     break;}
  4181. case 118:
  4182. #line 800 "parse.y"
  4183. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4184.     break;}
  4185. case 119:
  4186. #line 802 "parse.y"
  4187. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4188.     break;}
  4189. case 120:
  4190. #line 807 "parse.y"
  4191. { yyval.ttype = groktypename (yyval.ttype); ;
  4192.     break;}
  4193. case 122:
  4194. #line 813 "parse.y"
  4195. {
  4196.           tree t, decl, tmpl;
  4197.  
  4198.           tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (yyvsp[-1].ttype));
  4199.           t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, yyvsp[-1].ttype, yyvsp[0].ttype, 0);
  4200.           set_current_level_tags_transparency (1);
  4201.           my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
  4202.                       || TREE_CODE (t) == UNION_TYPE, 257);
  4203.           yyval.ttype = t;
  4204.  
  4205.           /* Now, put a copy of the decl in global scope, to avoid
  4206.              recursive expansion.  */
  4207.           decl = IDENTIFIER_LOCAL_VALUE (yyvsp[-1].ttype);
  4208.           if (!decl)
  4209.             decl = IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype);
  4210.           /* Now, put a copy of the decl in global scope, to avoid
  4211.              recursive expansion.  */
  4212.                   if (decl)
  4213.                     {
  4214.               /* Need to copy it to clear the chain pointer,
  4215.              and need to get it into permanent storage.  */
  4216.                       my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
  4217.               push_obstacks (&permanent_obstack, &permanent_obstack);
  4218.                       decl = copy_node (decl);
  4219.               if (DECL_LANG_SPECIFIC (decl))
  4220.             copy_lang_decl (decl);
  4221.               pop_obstacks ();
  4222.               pushdecl_top_level (decl);
  4223.             }
  4224.           /* Kludge; see instantiate_class_template.  */
  4225.           TYPE_BEING_DEFINED (t) = 0;
  4226.         ;
  4227.     break;}
  4228. case 123:
  4229. #line 846 "parse.y"
  4230. {
  4231.           tree t = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0);
  4232.  
  4233.           pop_obstacks ();
  4234.           end_template_instantiation (yyvsp[-5].ttype);
  4235.  
  4236.                   /* Now go after the methods & class data.  */
  4237.                   instantiate_member_templates (yyvsp[-5].ttype);
  4238.  
  4239.           pop_tinst_level();
  4240.  
  4241.           CLASSTYPE_GOT_SEMICOLON (t) = 1;
  4242.         ;
  4243.     break;}
  4244. case 124:
  4245. #line 863 "parse.y"
  4246. { yyval.ttype = NULL_TREE; ;
  4247.     break;}
  4248. case 125:
  4249. #line 865 "parse.y"
  4250. { yyval.ttype = yyvsp[0].ttype; ;
  4251.     break;}
  4252. case 126:
  4253. #line 870 "parse.y"
  4254. { yyval.ttype = NULL_TREE; /* never used from here... */;
  4255.     break;}
  4256. case 127:
  4257. #line 872 "parse.y"
  4258. { yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
  4259.     break;}
  4260. case 128:
  4261. #line 876 "parse.y"
  4262. { yyval.code = NEGATE_EXPR; ;
  4263.     break;}
  4264. case 129:
  4265. #line 878 "parse.y"
  4266. { yyval.code = CONVERT_EXPR; ;
  4267.     break;}
  4268. case 130:
  4269. #line 880 "parse.y"
  4270. { yyval.code = PREINCREMENT_EXPR; ;
  4271.     break;}
  4272. case 131:
  4273. #line 882 "parse.y"
  4274. { yyval.code = PREDECREMENT_EXPR; ;
  4275.     break;}
  4276. case 132:
  4277. #line 884 "parse.y"
  4278. { yyval.code = TRUTH_NOT_EXPR; ;
  4279.     break;}
  4280. case 133:
  4281. #line 888 "parse.y"
  4282. { yyval.ttype = build_x_compound_expr (yyval.ttype); ;
  4283.     break;}
  4284. case 135:
  4285. #line 894 "parse.y"
  4286. { error ("ANSI C++ forbids an empty condition for `%s'",
  4287.              cond_stmt_keyword);
  4288.           yyval.ttype = integer_zero_node; ;
  4289.     break;}
  4290. case 136:
  4291. #line 898 "parse.y"
  4292. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4293.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4294.     break;}
  4295. case 137:
  4296. #line 904 "parse.y"
  4297. { error ("ANSI C++ forbids an empty condition for `%s'",
  4298.              cond_stmt_keyword);
  4299.           yyval.ttype = integer_zero_node; ;
  4300.     break;}
  4301. case 138:
  4302. #line 908 "parse.y"
  4303. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4304.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4305.     break;}
  4306. case 139:
  4307. #line 914 "parse.y"
  4308. { yyval.ttype = NULL_TREE; ;
  4309.     break;}
  4310. case 140:
  4311. #line 916 "parse.y"
  4312. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4313.                    bool_truthvalue_conversion (yyval.ttype)); ;
  4314.     break;}
  4315. case 141:
  4316. #line 919 "parse.y"
  4317. { yyval.ttype = NULL_TREE; ;
  4318.     break;}
  4319. case 142:
  4320. #line 924 "parse.y"
  4321. { {
  4322.           tree d;
  4323.           for (d = getdecls (); d; d = TREE_CHAIN (d))
  4324.             if (TREE_CODE (d) == TYPE_DECL) {
  4325.               tree s = TREE_TYPE (d);
  4326.               if (TREE_CODE (s) == RECORD_TYPE)
  4327.             cp_error ("definition of class `%T' in condition", s);
  4328.               else if (TREE_CODE (s) == ENUMERAL_TYPE)
  4329.             cp_error ("definition of enum `%T' in condition", s);
  4330.             }
  4331.           }
  4332.           current_declspecs = yyvsp[-5].ttype;
  4333.           yyvsp[0].itype = suspend_momentary ();
  4334.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  4335.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  4336.         ;
  4337.     break;}
  4338. case 143:
  4339. #line 941 "parse.y"
  4340.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 0);
  4341.           resume_momentary (yyvsp[-2].itype);
  4342.           yyval.ttype = yyvsp[-1].ttype; 
  4343.           if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
  4344.             cp_error ("definition of array `%#D' in condition", yyval.ttype); 
  4345.         ;
  4346.     break;}
  4347. case 145:
  4348. #line 953 "parse.y"
  4349. { finish_stmt (); ;
  4350.     break;}
  4351. case 146:
  4352. #line 955 "parse.y"
  4353. { finish_stmt (); ;
  4354.     break;}
  4355. case 147:
  4356. #line 957 "parse.y"
  4357. { finish_stmt (); ;
  4358.     break;}
  4359. case 149:
  4360. #line 964 "parse.y"
  4361. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4362.                           build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4363.     break;}
  4364. case 150:
  4365. #line 967 "parse.y"
  4366. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4367.                           build_tree_list (NULL_TREE, error_mark_node)); ;
  4368.     break;}
  4369. case 151:
  4370. #line 970 "parse.y"
  4371. { chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4372.     break;}
  4373. case 152:
  4374. #line 972 "parse.y"
  4375. { chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
  4376.     break;}
  4377. case 153:
  4378. #line 977 "parse.y"
  4379. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4380.     break;}
  4381. case 155:
  4382. #line 983 "parse.y"
  4383. {
  4384. #if 0
  4385.           if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
  4386.             yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
  4387. #endif
  4388.         ;
  4389.     break;}
  4390. case 156:
  4391. #line 991 "parse.y"
  4392. { yyvsp[0].itype = pedantic;
  4393.           pedantic = 0; ;
  4394.     break;}
  4395. case 157:
  4396. #line 994 "parse.y"
  4397. { yyval.ttype = yyvsp[0].ttype;
  4398.           pedantic = yyvsp[-2].itype; ;
  4399.     break;}
  4400. case 158:
  4401. #line 997 "parse.y"
  4402. { yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  4403.     break;}
  4404. case 159:
  4405. #line 999 "parse.y"
  4406. { yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
  4407.     break;}
  4408. case 160:
  4409. #line 1001 "parse.y"
  4410. { yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4411.     break;}
  4412. case 161:
  4413. #line 1003 "parse.y"
  4414. { yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
  4415.           if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
  4416.             TREE_NEGATED_INT (yyval.ttype) = 1;
  4417.           overflow_warning (yyval.ttype);
  4418.         ;
  4419.     break;}
  4420. case 162:
  4421. #line 1010 "parse.y"
  4422. { tree label = lookup_label (yyvsp[0].ttype);
  4423.           if (label == NULL_TREE)
  4424.             yyval.ttype = null_pointer_node;
  4425.           else
  4426.             {
  4427.               TREE_USED (label) = 1;
  4428.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  4429.               TREE_CONSTANT (yyval.ttype) = 1;
  4430.             }
  4431.         ;
  4432.     break;}
  4433. case 163:
  4434. #line 1021 "parse.y"
  4435. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  4436.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  4437.             error ("sizeof applied to a bit-field");
  4438.           /* ANSI says arrays and functions are converted inside comma.
  4439.              But we can't really convert them in build_compound_expr
  4440.              because that would break commas in lvalues.
  4441.              So do the conversion here if operand was a comma.  */
  4442.           if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
  4443.               && (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
  4444.               || TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
  4445.             yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
  4446.           else if (TREE_CODE (yyvsp[0].ttype) == TREE_LIST)
  4447.                 {
  4448.               tree t = TREE_VALUE (yyvsp[0].ttype);
  4449.               if (t != NULL_TREE
  4450.               && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
  4451.             pedwarn ("ANSI C++ forbids using sizeof() on a function");
  4452.             }
  4453.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  4454.     break;}
  4455. case 164:
  4456. #line 1041 "parse.y"
  4457. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  4458.     break;}
  4459. case 165:
  4460. #line 1043 "parse.y"
  4461. { yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
  4462.     break;}
  4463. case 166:
  4464. #line 1045 "parse.y"
  4465. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  4466.     break;}
  4467. case 167:
  4468. #line 1050 "parse.y"
  4469. { yyval.ttype = build_new (NULL_TREE, yyvsp[0].ttype, NULL_TREE, yyvsp[-1].itype); ;
  4470.     break;}
  4471. case 168:
  4472. #line 1052 "parse.y"
  4473. { yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-2].itype); ;
  4474.     break;}
  4475. case 169:
  4476. #line 1054 "parse.y"
  4477. { yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyvsp[-2].itype); ;
  4478.     break;}
  4479. case 170:
  4480. #line 1056 "parse.y"
  4481. { yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].itype); ;
  4482.     break;}
  4483. case 171:
  4484. #line 1058 "parse.y"
  4485. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ttype),
  4486.                   NULL_TREE, yyvsp[-3].itype); ;
  4487.     break;}
  4488. case 172:
  4489. #line 1061 "parse.y"
  4490. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-4].itype); ;
  4491.     break;}
  4492. case 173:
  4493. #line 1063 "parse.y"
  4494. { yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ttype), NULL_TREE, yyvsp[-4].itype); ;
  4495.     break;}
  4496. case 174:
  4497. #line 1065 "parse.y"
  4498. { yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-5].itype); ;
  4499.     break;}
  4500. case 175:
  4501. #line 1068 "parse.y"
  4502. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
  4503.     break;}
  4504. case 176:
  4505. #line 1070 "parse.y"
  4506. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
  4507.           if (yychar == YYEMPTY)
  4508.             yychar = YYLEX; ;
  4509.     break;}
  4510. case 177:
  4511. #line 1074 "parse.y"
  4512. { yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
  4513.           if (yychar == YYEMPTY)
  4514.             yychar = YYLEX; ;
  4515.     break;}
  4516. case 178:
  4517. #line 1081 "parse.y"
  4518. { yyval.ttype = yyvsp[-1].ttype; ;
  4519.     break;}
  4520. case 179:
  4521. #line 1083 "parse.y"
  4522. {
  4523.           yyval.ttype = yyvsp[-1].ttype; 
  4524.           pedwarn ("old style placement syntax, use () instead");
  4525.         ;
  4526.     break;}
  4527. case 180:
  4528. #line 1091 "parse.y"
  4529. { yyval.ttype = yyvsp[-1].ttype; ;
  4530.     break;}
  4531. case 181:
  4532. #line 1093 "parse.y"
  4533. { yyval.ttype = NULL_TREE; ;
  4534.     break;}
  4535. case 182:
  4536. #line 1095 "parse.y"
  4537. {
  4538.           cp_error ("`%T' is not a valid expression", yyvsp[-1].ttype);
  4539.           yyval.ttype = error_mark_node;
  4540.         ;
  4541.     break;}
  4542. case 183:
  4543. #line 1103 "parse.y"
  4544. {
  4545.           if (flag_ansi)
  4546.             pedwarn ("ANSI C++ forbids initialization of new expression with `='");
  4547.           yyval.ttype = yyvsp[0].ttype;
  4548.         ;
  4549.     break;}
  4550. case 184:
  4551. #line 1113 "parse.y"
  4552. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4553.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4554.           yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-1].ttype, 
  4555.                      NULL_TREE); ;
  4556.     break;}
  4557. case 185:
  4558. #line 1118 "parse.y"
  4559. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4560.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4561.           yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4562.     break;}
  4563. case 187:
  4564. #line 1126 "parse.y"
  4565. { yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
  4566.     break;}
  4567. case 188:
  4568. #line 1128 "parse.y"
  4569.           tree init = build_nt (CONSTRUCTOR, NULL_TREE,
  4570.                     nreverse (yyvsp[-2].ttype)); 
  4571.           if (flag_ansi)
  4572.             pedwarn ("ANSI C++ forbids constructor-expressions");
  4573.           /* Indicate that this was a GNU C constructor expression.  */
  4574.           TREE_HAS_CONSTRUCTOR (init) = 1;
  4575.  
  4576.           yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
  4577.         ;
  4578.     break;}
  4579. case 190:
  4580. #line 1143 "parse.y"
  4581. { yyval.ttype = build_headof (yyvsp[-1].ttype); ;
  4582.     break;}
  4583. case 191:
  4584. #line 1145 "parse.y"
  4585. { yyval.ttype = build_classof (yyvsp[-1].ttype); ;
  4586.     break;}
  4587. case 192:
  4588. #line 1147 "parse.y"
  4589. { if (is_aggr_typedef (yyvsp[-1].ttype, 1))
  4590.             {
  4591.               tree type = IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype);
  4592.               if (! IS_SIGNATURE(type))
  4593.             yyval.ttype = CLASSTYPE_DOSSIER (type);
  4594.               else
  4595.             {
  4596.               sorry ("signature name as argument of `classof'");
  4597.               yyval.ttype = error_mark_node;
  4598.             }
  4599.             }
  4600.           else
  4601.             yyval.ttype = error_mark_node;
  4602.         ;
  4603.     break;}
  4604. case 194:
  4605. #line 1167 "parse.y"
  4606. { yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
  4607.     break;}
  4608. case 195:
  4609. #line 1169 "parse.y"
  4610. { yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
  4611.     break;}
  4612. case 196:
  4613. #line 1171 "parse.y"
  4614. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4615.     break;}
  4616. case 197:
  4617. #line 1173 "parse.y"
  4618. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4619.     break;}
  4620. case 198:
  4621. #line 1175 "parse.y"
  4622. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4623.     break;}
  4624. case 199:
  4625. #line 1177 "parse.y"
  4626. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4627.     break;}
  4628. case 200:
  4629. #line 1179 "parse.y"
  4630. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4631.     break;}
  4632. case 201:
  4633. #line 1181 "parse.y"
  4634. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4635.     break;}
  4636. case 202:
  4637. #line 1183 "parse.y"
  4638. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4639.     break;}
  4640. case 203:
  4641. #line 1185 "parse.y"
  4642. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4643.     break;}
  4644. case 204:
  4645. #line 1187 "parse.y"
  4646. { yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4647.     break;}
  4648. case 205:
  4649. #line 1189 "parse.y"
  4650. { yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4651.     break;}
  4652. case 206:
  4653. #line 1191 "parse.y"
  4654. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4655.     break;}
  4656. case 207:
  4657. #line 1193 "parse.y"
  4658. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4659.     break;}
  4660. case 208:
  4661. #line 1195 "parse.y"
  4662. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4663.     break;}
  4664. case 209:
  4665. #line 1197 "parse.y"
  4666. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4667.     break;}
  4668. case 210:
  4669. #line 1199 "parse.y"
  4670. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4671.     break;}
  4672. case 211:
  4673. #line 1201 "parse.y"
  4674. { yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4675.     break;}
  4676. case 212:
  4677. #line 1203 "parse.y"
  4678. { yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4679.     break;}
  4680. case 213:
  4681. #line 1205 "parse.y"
  4682. { yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  4683.     break;}
  4684. case 214:
  4685. #line 1207 "parse.y"
  4686. { yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype); ;
  4687.     break;}
  4688. case 215:
  4689. #line 1209 "parse.y"
  4690. { register tree rval;
  4691.           if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype,
  4692.                          make_node (yyvsp[-1].code))))
  4693.             yyval.ttype = rval;
  4694.           else
  4695.             yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
  4696.     break;}
  4697. case 216:
  4698. #line 1216 "parse.y"
  4699. { yyval.ttype = build_throw (NULL_TREE); ;
  4700.     break;}
  4701. case 217:
  4702. #line 1218 "parse.y"
  4703. { yyval.ttype = build_throw (yyvsp[0].ttype); ;
  4704.     break;}
  4705. case 218:
  4706. #line 1236 "parse.y"
  4707. { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4708.     break;}
  4709. case 226:
  4710. #line 1251 "parse.y"
  4711. { yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
  4712.     break;}
  4713. case 227:
  4714. #line 1253 "parse.y"
  4715. { yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
  4716.     break;}
  4717. case 230:
  4718. #line 1260 "parse.y"
  4719. { push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
  4720.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  4721.     break;}
  4722. case 231:
  4723. #line 1266 "parse.y"
  4724. {
  4725.           if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
  4726.             yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
  4727.           else if (IDENTIFIER_OPNAME_P (yyval.ttype))
  4728.             {
  4729.               tree op = yyval.ttype;
  4730.               yyval.ttype = lookup_name (op, 0);
  4731.               if (yyval.ttype == NULL_TREE)
  4732.             {
  4733.               if (op != ansi_opname[ERROR_MARK])
  4734.                 error ("operator %s not defined",
  4735.                    operator_name_string (op));
  4736.               yyval.ttype = error_mark_node;
  4737.             }
  4738.             }
  4739.           else
  4740.             yyval.ttype = do_identifier (yyval.ttype);
  4741.         ;
  4742.     break;}
  4743. case 234:
  4744. #line 1287 "parse.y"
  4745. { yyval.ttype = combine_strings (yyval.ttype); ;
  4746.     break;}
  4747. case 235:
  4748. #line 1289 "parse.y"
  4749. { yyval.ttype = yyvsp[-1].ttype; ;
  4750.     break;}
  4751. case 236:
  4752. #line 1291 "parse.y"
  4753. { yyval.ttype = error_mark_node; ;
  4754.     break;}
  4755. case 237:
  4756. #line 1293 "parse.y"
  4757. { if (current_function_decl == 0)
  4758.             {
  4759.               error ("braced-group within expression allowed only inside a function");
  4760.               YYERROR;
  4761.             }
  4762.           keep_next_level ();
  4763.           yyval.ttype = expand_start_stmt_expr (); ;
  4764.     break;}
  4765. case 238:
  4766. #line 1301 "parse.y"
  4767. { tree rtl_exp;
  4768.           if (flag_ansi)
  4769.             pedwarn ("ANSI C++ forbids braced-groups within expressions");
  4770.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  4771.           /* The statements have side effects, so the group does.  */
  4772.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  4773.  
  4774.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  4775.             {
  4776.               /* Make a BIND_EXPR for the BLOCK already made.  */
  4777.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  4778.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  4779.               /* Remove the block from the tree at this point.
  4780.              It gets put back at the proper place
  4781.              when the BIND_EXPR is expanded.  */
  4782.               delete_block (yyvsp[-1].ttype);
  4783.             }
  4784.           else
  4785.             yyval.ttype = yyvsp[-1].ttype;
  4786.         ;
  4787.     break;}
  4788. case 239:
  4789. #line 1322 "parse.y"
  4790. { /* [eichin:19911016.1902EST] */
  4791.                   yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl); 
  4792.                   /* here we instantiate_class_template as needed... */
  4793.                   do_pending_templates ();
  4794.                 ;
  4795.     break;}
  4796. case 240:
  4797. #line 1326 "parse.y"
  4798. {
  4799.                   if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
  4800.                       && TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
  4801.                 yyval.ttype = require_complete_type (yyvsp[-1].ttype);
  4802.                   else
  4803.                     yyval.ttype = yyvsp[-1].ttype;
  4804.                 ;
  4805.     break;}
  4806. case 241:
  4807. #line 1334 "parse.y"
  4808. {
  4809.           yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
  4810.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  4811.               && TREE_TYPE (yyval.ttype) != void_type_node)
  4812.             yyval.ttype = require_complete_type (yyval.ttype);
  4813.                 ;
  4814.     break;}
  4815. case 242:
  4816. #line 1341 "parse.y"
  4817. { yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
  4818.     break;}
  4819. case 243:
  4820. #line 1343 "parse.y"
  4821. { /* If we get an OFFSET_REF, turn it into what it really
  4822.              means (e.g., a COMPONENT_REF).  This way if we've got,
  4823.              say, a reference to a static member that's being operated
  4824.              on, we don't end up trying to find a member operator for
  4825.              the class it's in.  */
  4826.           if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4827.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4828.           yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
  4829.     break;}
  4830. case 244:
  4831. #line 1352 "parse.y"
  4832. { if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4833.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4834.           yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
  4835.     break;}
  4836. case 245:
  4837. #line 1357 "parse.y"
  4838. { if (current_class_decl)
  4839.             {
  4840. #ifdef WARNING_ABOUT_CCD
  4841.               TREE_USED (current_class_decl) = 1;
  4842. #endif
  4843.               yyval.ttype = current_class_decl;
  4844.             }
  4845.           else if (current_function_decl
  4846.                && DECL_STATIC_FUNCTION_P (current_function_decl))
  4847.             {
  4848.               error ("`this' is unavailable for static member functions");
  4849.               yyval.ttype = error_mark_node;
  4850.             }
  4851.           else
  4852.             {
  4853.               if (current_function_decl)
  4854.             error ("invalid use of `this' in non-member function");
  4855.               else
  4856.             error ("invalid use of `this' at top level");
  4857.               yyval.ttype = error_mark_node;
  4858.             }
  4859.         ;
  4860.     break;}
  4861. case 246:
  4862. #line 1380 "parse.y"
  4863. {
  4864.           tree type;
  4865.           tree id = yyval.ttype;
  4866.  
  4867.           /* This is a C cast in C++'s `functional' notation.  */
  4868.           if (yyvsp[-1].ttype == error_mark_node)
  4869.             {
  4870.               yyval.ttype = error_mark_node;
  4871.               break;
  4872.             }
  4873. #if 0
  4874.           if (yyvsp[-1].ttype == NULL_TREE)
  4875.             {
  4876.               error ("cannot cast null list to type `%s'",
  4877.                      IDENTIFIER_POINTER (TYPE_NAME (id)));
  4878.               yyval.ttype = error_mark_node;
  4879.               break;
  4880.             }
  4881. #endif
  4882. #if 0
  4883.           /* type is not set! (mrs) */
  4884.           if (type == error_mark_node)
  4885.             yyval.ttype = error_mark_node;
  4886.           else
  4887. #endif
  4888.             {
  4889.               if (id == ridpointers[(int) RID_CONST])
  4890.                 type = build_type_variant (integer_type_node, 1, 0);
  4891.               else if (id == ridpointers[(int) RID_VOLATILE])
  4892.                 type = build_type_variant (integer_type_node, 0, 1);
  4893. #if 0
  4894.               /* should not be able to get here (mrs) */
  4895.               else if (id == ridpointers[(int) RID_FRIEND])
  4896.                 {
  4897.                   error ("cannot cast expression to `friend' type");
  4898.                   yyval.ttype = error_mark_node;
  4899.                   break;
  4900.                 }
  4901. #endif
  4902.               else my_friendly_abort (79);
  4903.               yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
  4904.             }
  4905.         ;
  4906.     break;}
  4907. case 248:
  4908. #line 1425 "parse.y"
  4909. { tree type = groktypename (yyvsp[-4].ttype);
  4910.           yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
  4911.     break;}
  4912. case 249:
  4913. #line 1428 "parse.y"
  4914. { tree type = groktypename (yyvsp[-4].ttype);
  4915.           yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
  4916.     break;}
  4917. case 250:
  4918. #line 1431 "parse.y"
  4919. { tree type = groktypename (yyvsp[-4].ttype);
  4920.           yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
  4921.     break;}
  4922. case 251:
  4923. #line 1434 "parse.y"
  4924. { tree type = groktypename (yyvsp[-4].ttype);
  4925.           yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
  4926.     break;}
  4927. case 252:
  4928. #line 1437 "parse.y"
  4929. { yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
  4930.     break;}
  4931. case 253:
  4932. #line 1439 "parse.y"
  4933. { tree type = groktypename (yyvsp[-1].ttype);
  4934.           yyval.ttype = get_typeid (type); ;
  4935.     break;}
  4936. case 254:
  4937. #line 1442 "parse.y"
  4938. {
  4939.         do_scoped_id:
  4940.           yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
  4941.           if (yychar == YYEMPTY)
  4942.             yychar = YYLEX;
  4943.           if (! yyval.ttype)
  4944.             {
  4945.               if (yychar == '(' || yychar == LEFT_RIGHT)
  4946.             yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  4947.               else
  4948.             {
  4949.               if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
  4950.                 error ("undeclared variable `%s' (first use here)",
  4951.                    IDENTIFIER_POINTER (yyvsp[0].ttype));
  4952.               yyval.ttype = error_mark_node;
  4953.               /* Prevent repeated error messages.  */
  4954.               IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  4955.             }
  4956.             }
  4957.           else
  4958.             {
  4959.               if (TREE_CODE (yyval.ttype) == ADDR_EXPR)
  4960.             assemble_external (TREE_OPERAND (yyval.ttype, 0));
  4961.               else
  4962.             assemble_external (yyval.ttype);
  4963.               TREE_USED (yyval.ttype) = 1;
  4964.             }
  4965.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  4966.             {
  4967.               /* XXX CHS - should we set TREE_USED of the constant? */
  4968.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  4969.               /* This is to prevent an enum whose value is 0
  4970.              from being considered a null pointer constant.  */
  4971.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  4972.               TREE_CONSTANT (yyval.ttype) = 1;
  4973.             }
  4974.  
  4975.         ;
  4976.     break;}
  4977. case 255:
  4978. #line 1481 "parse.y"
  4979. {
  4980.           got_scope = NULL_TREE;
  4981.           if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
  4982.             goto do_scoped_id;
  4983.           yyval.ttype = yyvsp[0].ttype;
  4984.         ;
  4985.     break;}
  4986. case 256:
  4987. #line 1488 "parse.y"
  4988. { yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
  4989.     break;}
  4990. case 257:
  4991. #line 1490 "parse.y"
  4992. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
  4993.     break;}
  4994. case 258:
  4995. #line 1492 "parse.y"
  4996. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
  4997.     break;}
  4998. case 259:
  4999. #line 1494 "parse.y"
  5000. { yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
  5001.     break;}
  5002. case 260:
  5003. #line 1496 "parse.y"
  5004. { yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
  5005.     break;}
  5006. case 261:
  5007. #line 1498 "parse.y"
  5008. {
  5009. #if 0
  5010.           /* This is a future direction of this code, but because
  5011.              build_x_function_call cannot always undo what is done
  5012.              in build_component_ref entirely yet, we cannot do this. */
  5013.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-3].ttype, NULL_TREE, 1), yyvsp[-1].ttype, yyval.ttype);
  5014.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5015.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5016.             yyval.ttype = require_complete_type (yyval.ttype);
  5017. #else
  5018.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
  5019.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5020. #endif
  5021.         ;
  5022.     break;}
  5023. case 262:
  5024. #line 1513 "parse.y"
  5025. {
  5026. #if 0
  5027.           /* This is a future direction of this code, but because
  5028.              build_x_function_call cannot always undo what is done
  5029.              in build_component_ref entirely yet, we cannot do this. */
  5030.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, 1), NULL_TREE, yyval.ttype);
  5031.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5032.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5033.             yyval.ttype = require_complete_type (yyval.ttype);
  5034. #else
  5035.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
  5036.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5037. #endif
  5038.         ;
  5039.     break;}
  5040. case 263:
  5041. #line 1528 "parse.y"
  5042. {
  5043.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
  5044.             {
  5045.               warning ("signature name in scope resolution ignored");
  5046.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype, NULL_TREE,
  5047.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5048.             }
  5049.           else
  5050.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  5051.         ;
  5052.     break;}
  5053. case 264:
  5054. #line 1539 "parse.y"
  5055. {
  5056.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
  5057.             {
  5058.               warning ("signature name in scope resolution ignored");
  5059.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-1].ttype), NULL_TREE, NULL_TREE,
  5060.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5061.             }
  5062.           else
  5063.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
  5064.         ;
  5065.     break;}
  5066. case 265:
  5067. #line 1551 "parse.y"
  5068.           if (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype)) 
  5069.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype))))
  5070.             cp_error ("`%E' is not of type `%T'", yyvsp[-3].ttype, yyvsp[-1].ttype);
  5071.           yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
  5072.         ;
  5073.     break;}
  5074. case 266:
  5075. #line 1558 "parse.y"
  5076.           if (yyvsp[-4].ttype != yyvsp[-1].ttype)
  5077.             cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
  5078.           if (TREE_CODE (TREE_TYPE (yyvsp[-5].ttype))
  5079.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-4].ttype))))
  5080.             cp_error ("`%E' is not of type `%T'", yyvsp[-5].ttype, yyvsp[-4].ttype);
  5081.           yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
  5082.         ;
  5083.     break;}
  5084. case 267:
  5085. #line 1607 "parse.y"
  5086. { yyval.itype = 0; ;
  5087.     break;}
  5088. case 268:
  5089. #line 1609 "parse.y"
  5090. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5091.     break;}
  5092. case 269:
  5093. #line 1613 "parse.y"
  5094. { yyval.itype = 0; ;
  5095.     break;}
  5096. case 270:
  5097. #line 1615 "parse.y"
  5098. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5099.     break;}
  5100. case 271:
  5101. #line 1620 "parse.y"
  5102. { yyval.ttype = true_node; ;
  5103.     break;}
  5104. case 272:
  5105. #line 1622 "parse.y"
  5106. { yyval.ttype = false_node; ;
  5107.     break;}
  5108. case 274:
  5109. #line 1629 "parse.y"
  5110. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5111.     break;}
  5112. case 275:
  5113. #line 1634 "parse.y"
  5114. {
  5115.           if (! current_function_parms_stored)
  5116.             store_parm_decls ();
  5117.           setup_vtbl_ptr ();
  5118.           /* Always keep the BLOCK node associated with the outermost
  5119.              pair of curley braces of a function.  These are needed
  5120.              for correct operation of dwarfout.c.  */
  5121.           keep_next_level ();
  5122.         ;
  5123.     break;}
  5124. case 277:
  5125. #line 1647 "parse.y"
  5126. {
  5127.           yyval.ttype = build_x_arrow (yyval.ttype);
  5128.         ;
  5129.     break;}
  5130. case 278:
  5131. #line 1655 "parse.y"
  5132. { tree d = get_decl_list (yyvsp[-2].ttype);
  5133.           int yes = suspend_momentary ();
  5134.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5135.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5136.           resume_momentary (yes);
  5137.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5138.             note_got_semicolon (yyvsp[-2].ttype);
  5139.         ;
  5140.     break;}
  5141. case 279:
  5142. #line 1664 "parse.y"
  5143. { tree d = yyvsp[-2].ttype;
  5144.           int yes = suspend_momentary ();
  5145.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5146.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5147.           resume_momentary (yes);
  5148.           note_list_got_semicolon (yyvsp[-2].ttype);
  5149.         ;
  5150.     break;}
  5151. case 280:
  5152. #line 1672 "parse.y"
  5153. {
  5154.           resume_momentary (yyvsp[-1].itype);
  5155.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5156.             note_got_semicolon (yyvsp[-2].ttype);
  5157.         ;
  5158.     break;}
  5159. case 281:
  5160. #line 1678 "parse.y"
  5161. {
  5162.           resume_momentary (yyvsp[-1].itype);
  5163.           note_list_got_semicolon (yyvsp[-2].ttype);
  5164.         ;
  5165.     break;}
  5166. case 282:
  5167. #line 1683 "parse.y"
  5168. { resume_momentary (yyvsp[-1].itype); ;
  5169.     break;}
  5170. case 283:
  5171. #line 1685 "parse.y"
  5172. {
  5173.           shadow_tag (yyvsp[-1].ttype);
  5174.           note_list_got_semicolon (yyvsp[-1].ttype);
  5175.         ;
  5176.     break;}
  5177. case 284:
  5178. #line 1690 "parse.y"
  5179. { warning ("empty declaration"); ;
  5180.     break;}
  5181. case 287:
  5182. #line 1704 "parse.y"
  5183. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
  5184.                      NULL_TREE); ;
  5185.     break;}
  5186. case 288:
  5187. #line 1707 "parse.y"
  5188. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), 
  5189.                      NULL_TREE); ;
  5190.     break;}
  5191. case 289:
  5192. #line 1714 "parse.y"
  5193. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5194.     break;}
  5195. case 290:
  5196. #line 1716 "parse.y"
  5197. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5198.     break;}
  5199. case 291:
  5200. #line 1718 "parse.y"
  5201. { yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  5202.     break;}
  5203. case 292:
  5204. #line 1720 "parse.y"
  5205. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5206.     break;}
  5207. case 293:
  5208. #line 1722 "parse.y"
  5209. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5210.     break;}
  5211. case 296:
  5212. #line 1735 "parse.y"
  5213. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5214.     break;}
  5215. case 297:
  5216. #line 1737 "parse.y"
  5217. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5218.     break;}
  5219. case 298:
  5220. #line 1739 "parse.y"
  5221. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5222.     break;}
  5223. case 299:
  5224. #line 1741 "parse.y"
  5225. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5226.     break;}
  5227. case 300:
  5228. #line 1743 "parse.y"
  5229. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype, 
  5230.                        chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
  5231.     break;}
  5232. case 301:
  5233. #line 1749 "parse.y"
  5234. { if (extra_warnings)
  5235.             warning ("`%s' is not at beginning of declaration",
  5236.                  IDENTIFIER_POINTER (yyval.ttype));
  5237.           yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5238.     break;}
  5239. case 302:
  5240. #line 1754 "parse.y"
  5241. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5242.     break;}
  5243. case 303:
  5244. #line 1756 "parse.y"
  5245. { if (extra_warnings)
  5246.             warning ("`%s' is not at beginning of declaration",
  5247.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5248.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5249.     break;}
  5250. case 304:
  5251. #line 1768 "parse.y"
  5252. { TREE_STATIC (yyval.ttype) = 1; ;
  5253.     break;}
  5254. case 305:
  5255. #line 1770 "parse.y"
  5256. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  5257.     break;}
  5258. case 306:
  5259. #line 1772 "parse.y"
  5260. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5261.           TREE_STATIC (yyval.ttype) = 1; ;
  5262.     break;}
  5263. case 307:
  5264. #line 1775 "parse.y"
  5265. { if (extra_warnings && TREE_STATIC (yyval.ttype))
  5266.             warning ("`%s' is not at beginning of declaration",
  5267.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5268.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5269.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  5270.     break;}
  5271. case 308:
  5272. #line 1791 "parse.y"
  5273. { yyval.ttype = get_decl_list (yyval.ttype); ;
  5274.     break;}
  5275. case 309:
  5276. #line 1793 "parse.y"
  5277. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5278.     break;}
  5279. case 310:
  5280. #line 1795 "parse.y"
  5281. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5282.     break;}
  5283. case 311:
  5284. #line 1797 "parse.y"
  5285. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5286.     break;}
  5287. case 312:
  5288. #line 1802 "parse.y"
  5289. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5290.     break;}
  5291. case 313:
  5292. #line 1804 "parse.y"
  5293. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5294.     break;}
  5295. case 317:
  5296. #line 1815 "parse.y"
  5297. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
  5298.           if (flag_ansi)
  5299.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5300.     break;}
  5301. case 318:
  5302. #line 1819 "parse.y"
  5303. { yyval.ttype = groktypename (yyvsp[-1].ttype);
  5304.           if (flag_ansi)
  5305.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5306.     break;}
  5307. case 319:
  5308. #line 1823 "parse.y"
  5309. { tree type = TREE_TYPE (yyvsp[-1].ttype);
  5310.  
  5311.           if (IS_AGGR_TYPE (type))
  5312.             {
  5313.               sorry ("sigof type specifier");
  5314.               yyval.ttype = type;
  5315.             }
  5316.           else
  5317.             {
  5318.               error ("`sigof' applied to non-aggregate expression");
  5319.               yyval.ttype = error_mark_node;
  5320.             }
  5321.         ;
  5322.     break;}
  5323. case 320:
  5324. #line 1837 "parse.y"
  5325. { tree type = groktypename (yyvsp[-1].ttype);
  5326.  
  5327.           if (IS_AGGR_TYPE (type))
  5328.             {
  5329.               sorry ("sigof type specifier");
  5330.               yyval.ttype = type;
  5331.             }
  5332.           else
  5333.             {
  5334.               error("`sigof' applied to non-aggregate type");
  5335.               yyval.ttype = error_mark_node;
  5336.             }
  5337.         ;
  5338.     break;}
  5339. case 330:
  5340. #line 1876 "parse.y"
  5341. { yyval.ttype = NULL_TREE; ;
  5342.     break;}
  5343. case 331:
  5344. #line 1878 "parse.y"
  5345. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
  5346.     break;}
  5347. case 332:
  5348. #line 1883 "parse.y"
  5349. { current_declspecs = yyvsp[-5].ttype;
  5350.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5351.             current_declspecs = get_decl_list (current_declspecs);
  5352.           if (have_extern_spec && !used_extern_spec)
  5353.             {
  5354.               current_declspecs = decl_tree_cons
  5355.             (NULL_TREE, get_identifier ("extern"), 
  5356.              current_declspecs);
  5357.               used_extern_spec = 1;
  5358.             }
  5359.           yyvsp[0].itype = suspend_momentary ();
  5360.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5361.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5362.     break;}
  5363. case 333:
  5364. #line 1898 "parse.y"
  5365. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5366.           yyval.itype = yyvsp[-2].itype; ;
  5367.     break;}
  5368. case 334:
  5369. #line 1901 "parse.y"
  5370. { tree d;
  5371.           current_declspecs = yyvsp[-4].ttype;
  5372.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5373.             current_declspecs = get_decl_list (current_declspecs);
  5374.           if (have_extern_spec && !used_extern_spec)
  5375.             {
  5376.               current_declspecs = decl_tree_cons
  5377.             (NULL_TREE, get_identifier ("extern"), 
  5378.              current_declspecs);
  5379.               used_extern_spec = 1;
  5380.             }
  5381.           yyval.itype = suspend_momentary ();
  5382.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5383.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5384.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5385.     break;}
  5386. case 335:
  5387. #line 1920 "parse.y"
  5388. { yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5389.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5390.     break;}
  5391. case 336:
  5392. #line 1924 "parse.y"
  5393. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0); ;
  5394.     break;}
  5395. case 337:
  5396. #line 1926 "parse.y"
  5397. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5398.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype);
  5399.           finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5400.     break;}
  5401. case 338:
  5402. #line 1933 "parse.y"
  5403. { current_declspecs = yyvsp[-5].ttype;
  5404.           yyvsp[0].itype = suspend_momentary ();
  5405.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5406.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5407.     break;}
  5408. case 339:
  5409. #line 1939 "parse.y"
  5410. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5411.           yyval.itype = yyvsp[-2].itype; ;
  5412.     break;}
  5413. case 340:
  5414. #line 1942 "parse.y"
  5415. { tree d;
  5416.           current_declspecs = yyvsp[-4].ttype;
  5417.           yyval.itype = suspend_momentary ();
  5418.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5419.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5420.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5421.     break;}
  5422. case 341:
  5423. #line 1952 "parse.y"
  5424. { current_declspecs = NULL_TREE;
  5425.           yyvsp[0].itype = suspend_momentary ();
  5426.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5427.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5428.     break;}
  5429. case 342:
  5430. #line 1958 "parse.y"
  5431. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5432.           yyval.itype = yyvsp[-2].itype; ;
  5433.     break;}
  5434. case 343:
  5435. #line 1961 "parse.y"
  5436. { tree d;
  5437.           current_declspecs = NULL_TREE;
  5438.           yyval.itype = suspend_momentary ();
  5439.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5440.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5441.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5442.     break;}
  5443. case 344:
  5444. #line 1973 "parse.y"
  5445. { yyval.ttype = NULL_TREE; ;
  5446.     break;}
  5447. case 345:
  5448. #line 1975 "parse.y"
  5449. { yyval.ttype = yyvsp[0].ttype; ;
  5450.     break;}
  5451. case 346:
  5452. #line 1980 "parse.y"
  5453. { yyval.ttype = yyvsp[0].ttype; ;
  5454.     break;}
  5455. case 347:
  5456. #line 1982 "parse.y"
  5457. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  5458.     break;}
  5459. case 348:
  5460. #line 1987 "parse.y"
  5461. { yyval.ttype = yyvsp[-2].ttype; ;
  5462.     break;}
  5463. case 349:
  5464. #line 1992 "parse.y"
  5465. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5466.     break;}
  5467. case 350:
  5468. #line 1994 "parse.y"
  5469. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5470.     break;}
  5471. case 351:
  5472. #line 1999 "parse.y"
  5473. { yyval.ttype = NULL_TREE; ;
  5474.     break;}
  5475. case 352:
  5476. #line 2001 "parse.y"
  5477. { yyval.ttype = yyvsp[0].ttype; ;
  5478.     break;}
  5479. case 353:
  5480. #line 2003 "parse.y"
  5481. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  5482.     break;}
  5483. case 354:
  5484. #line 2005 "parse.y"
  5485. { yyval.ttype = tree_cons (yyvsp[-5].ttype, NULL_TREE, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  5486.     break;}
  5487. case 355:
  5488. #line 2007 "parse.y"
  5489. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
  5490.     break;}
  5491. case 360:
  5492. #line 2023 "parse.y"
  5493. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5494.     break;}
  5495. case 361:
  5496. #line 2025 "parse.y"
  5497. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5498.     break;}
  5499. case 363:
  5500. #line 2031 "parse.y"
  5501. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
  5502.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5503.     break;}
  5504. case 364:
  5505. #line 2034 "parse.y"
  5506. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
  5507.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5508.     break;}
  5509. case 365:
  5510. #line 2037 "parse.y"
  5511. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
  5512.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5513.     break;}
  5514. case 366:
  5515. #line 2040 "parse.y"
  5516. { yyval.ttype = NULL_TREE; ;
  5517.     break;}
  5518. case 367:
  5519. #line 2047 "parse.y"
  5520. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  5521.     break;}
  5522. case 368:
  5523. #line 2049 "parse.y"
  5524. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5525.     break;}
  5526. case 369:
  5527. #line 2052 "parse.y"
  5528. { yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  5529.     break;}
  5530. case 370:
  5531. #line 2054 "parse.y"
  5532. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5533.     break;}
  5534. case 371:
  5535. #line 2056 "parse.y"
  5536. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  5537.     break;}
  5538. case 372:
  5539. #line 2058 "parse.y"
  5540. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5541.     break;}
  5542. case 373:
  5543. #line 2063 "parse.y"
  5544. { yyvsp[0].itype = suspend_momentary ();
  5545.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  5546.     break;}
  5547. case 374:
  5548. #line 2066 "parse.y"
  5549. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5550.           resume_momentary ((int) yyvsp[-4].itype);
  5551.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5552.     break;}
  5553. case 375:
  5554. #line 2070 "parse.y"
  5555. { yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
  5556.           check_for_missing_semicolon (yyval.ttype); ;
  5557.     break;}
  5558. case 376:
  5559. #line 2073 "parse.y"
  5560. { yyvsp[0].itype = suspend_momentary ();
  5561.           yyval.ttype = start_enum (make_anon_name ()); ;
  5562.     break;}
  5563. case 377:
  5564. #line 2076 "parse.y"
  5565. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5566.           resume_momentary ((int) yyvsp[-5].itype);
  5567.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5568.     break;}
  5569. case 378:
  5570. #line 2080 "parse.y"
  5571. { yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
  5572.           check_for_missing_semicolon (yyval.ttype); ;
  5573.     break;}
  5574. case 379:
  5575. #line 2083 "parse.y"
  5576. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5577.     break;}
  5578. case 380:
  5579. #line 2085 "parse.y"
  5580. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5581.     break;}
  5582. case 381:
  5583. #line 2089 "parse.y"
  5584. {
  5585.           int semi;
  5586.           tree id;
  5587.  
  5588. #if 0
  5589.           /* Need to rework class nesting in the
  5590.              presence of nested classes, etc.  */
  5591.           shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
  5592. #endif
  5593.           if (yychar == YYEMPTY)
  5594.             yychar = YYLEX;
  5595.           semi = yychar == ';';
  5596.           /* finish_struct nukes this anyway; if
  5597.              finish_exception does too, then it can go. */
  5598.           if (semi)
  5599.             note_got_semicolon (yyval.ttype);
  5600.  
  5601.           if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
  5602.             /* $$ = $1 from default rule.  */;
  5603.           else if (CLASSTYPE_DECLARED_EXCEPTION (yyval.ttype))
  5604.             {
  5605.             }
  5606.           else
  5607.             {
  5608.               yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi);
  5609.               if (semi) note_got_semicolon (yyval.ttype);
  5610.             }
  5611.  
  5612.           pop_obstacks ();
  5613.  
  5614.           id = TYPE_IDENTIFIER (yyval.ttype);
  5615.           if (id && IDENTIFIER_TEMPLATE (id))
  5616.             {
  5617.               tree decl;
  5618.  
  5619.               /* I don't know if the copying of this TYPE_DECL is
  5620.                * really needed.  However, it's such a small per-
  5621.                * formance penalty that the extra safety is a bargain.
  5622.                * - niklas@appli.se
  5623.                */
  5624.               push_obstacks (&permanent_obstack, &permanent_obstack);
  5625.               decl = copy_node (lookup_name (id, 0));
  5626.               if (DECL_LANG_SPECIFIC (decl))
  5627.             copy_lang_decl (decl);
  5628.               pop_obstacks ();
  5629.               undo_template_name_overload (id, 0);
  5630.               pushdecl_top_level (decl);
  5631.             }
  5632.           if (! semi)
  5633.             check_for_missing_semicolon (yyval.ttype); ;
  5634.     break;}
  5635. case 382:
  5636. #line 2140 "parse.y"
  5637. {
  5638. #if 0
  5639.   /* It's no longer clear what the following error is supposed to
  5640.      accomplish.  If it turns out to be needed, add a comment why.  */
  5641.           if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype))
  5642.             {
  5643.               error ("incomplete definition of type `%s'",
  5644.                  TYPE_NAME_STRING (yyval.ttype));
  5645.               yyval.ttype = error_mark_node;
  5646.             }
  5647. #endif
  5648.         ;
  5649.     break;}
  5650. case 386:
  5651. #line 2162 "parse.y"
  5652. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  5653.     break;}
  5654. case 388:
  5655. #line 2167 "parse.y"
  5656. { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5657.     break;}
  5658. case 389:
  5659. #line 2169 "parse.y"
  5660. { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5661.     break;}
  5662. case 390:
  5663. #line 2171 "parse.y"
  5664. { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5665.     break;}
  5666. case 391:
  5667. #line 2173 "parse.y"
  5668. { error ("no body nor ';' separates two class, struct or union declarations"); ;
  5669.     break;}
  5670. case 392:
  5671. #line 2178 "parse.y"
  5672.           yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype; 
  5673.           if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
  5674.             instantiate_class_template (yyval.ttype, 2);
  5675.         ;
  5676.     break;}
  5677. case 393:
  5678. #line 2187 "parse.y"
  5679. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5680.     break;}
  5681. case 394:
  5682. #line 2189 "parse.y"
  5683. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5684.     break;}
  5685. case 395:
  5686. #line 2191 "parse.y"
  5687. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5688.     break;}
  5689. case 396:
  5690. #line 2193 "parse.y"
  5691. { yyungetc ('{', 1);
  5692.         aggr2:
  5693.           current_aggr = yyval.ttype;
  5694.           yyval.ttype = yyvsp[-1].ttype;
  5695.           overload_template_name (yyval.ttype, 0); ;
  5696.     break;}
  5697. case 397:
  5698. #line 2199 "parse.y"
  5699. { yyungetc (':', 1); goto aggr2; ;
  5700.     break;}
  5701. case 399:
  5702. #line 2205 "parse.y"
  5703. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5704.     break;}
  5705. case 400:
  5706. #line 2209 "parse.y"
  5707. { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
  5708.     break;}
  5709. case 401:
  5710. #line 2212 "parse.y"
  5711. { yyval.ttype = xref_defn_tag (current_aggr, yyvsp[0].ttype, NULL_TREE); ;
  5712.     break;}
  5713. case 402:
  5714. #line 2217 "parse.y"
  5715. {
  5716.           if (yyvsp[0].ttype)
  5717.             yyval.ttype = xref_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype, 1);
  5718.           else
  5719.             yyval.ttype = yyvsp[-1].ttype;
  5720.         ;
  5721.     break;}
  5722. case 403:
  5723. #line 2226 "parse.y"
  5724. {
  5725.           if (yyvsp[0].ttype)
  5726.             yyval.ttype = xref_defn_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
  5727.           else
  5728.             yyval.ttype = yyvsp[-1].ttype;
  5729.         ;
  5730.     break;}
  5731. case 404:
  5732. #line 2235 "parse.y"
  5733. { yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
  5734.           yyungetc ('{', 1); ;
  5735.     break;}
  5736. case 407:
  5737. #line 2243 "parse.y"
  5738. { yyval.ttype = NULL_TREE; ;
  5739.     break;}
  5740. case 408:
  5741. #line 2245 "parse.y"
  5742. { yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
  5743.     break;}
  5744. case 409:
  5745. #line 2247 "parse.y"
  5746. { yyval.ttype = yyvsp[0].ttype; ;
  5747.     break;}
  5748. case 411:
  5749. #line 2253 "parse.y"
  5750. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5751.     break;}
  5752. case 412:
  5753. #line 2258 "parse.y"
  5754. {
  5755.           tree type;
  5756.          do_base_class1:
  5757.           type = IDENTIFIER_TYPE_VALUE (yyval.ttype);
  5758.           if (! is_aggr_typedef (yyval.ttype, 1))
  5759.             yyval.ttype = NULL_TREE;
  5760.           else if (current_aggr == signature_type_node
  5761.                && (! type) && (! IS_SIGNATURE (type)))
  5762.             {
  5763.               error ("class name not allowed as base signature");
  5764.               yyval.ttype = NULL_TREE;
  5765.             }
  5766.           else if (current_aggr == signature_type_node)
  5767.             {
  5768.               sorry ("signature inheritance, base type `%s' ignored",
  5769.                  IDENTIFIER_POINTER (yyval.ttype));
  5770.               yyval.ttype = build_tree_list ((tree)access_public, yyval.ttype);
  5771.             }
  5772.           else if (type && IS_SIGNATURE (type))
  5773.             {
  5774.               error ("signature name not allowed as base class");
  5775.               yyval.ttype = NULL_TREE;
  5776.             }
  5777.           else
  5778.             yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
  5779.         ;
  5780.     break;}
  5781. case 413:
  5782. #line 2285 "parse.y"
  5783. {
  5784.           tree type;
  5785.          do_base_class2:
  5786.           type = IDENTIFIER_TYPE_VALUE (yyvsp[0].ttype);
  5787.           if (current_aggr == signature_type_node)
  5788.             error ("access and source specifiers not allowed in signature");
  5789.           if (! is_aggr_typedef (yyvsp[0].ttype, 1))
  5790.             yyval.ttype = NULL_TREE;
  5791.           else if (current_aggr == signature_type_node
  5792.                && (! type) && (! IS_SIGNATURE (type)))
  5793.             {
  5794.               error ("class name not allowed as base signature");
  5795.               yyval.ttype = NULL_TREE;
  5796.             }
  5797.           else if (current_aggr == signature_type_node)
  5798.             {
  5799.               sorry ("signature inheritance, base type `%s' ignored",
  5800.                  IDENTIFIER_POINTER (yyval.ttype));
  5801.               yyval.ttype = build_tree_list ((tree)access_public, yyvsp[0].ttype);
  5802.             }
  5803.           else if (type && IS_SIGNATURE (type))
  5804.             {
  5805.               error ("signature name not allowed as base class");
  5806.               yyval.ttype = NULL_TREE;
  5807.             }
  5808.           else
  5809.             yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
  5810.         ;
  5811.     break;}
  5812. case 415:
  5813. #line 2318 "parse.y"
  5814. {
  5815.           if (current_aggr == signature_type_node)
  5816.             {
  5817.               if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
  5818.             {
  5819.               sorry ("`sigof' as base signature specifier");
  5820.               /* need to return some dummy signature identifier */
  5821.               yyval.ttype = yyvsp[-1].ttype;
  5822.             }
  5823.               else
  5824.             {
  5825.               error ("`sigof' applied to non-aggregate expression");
  5826.               yyval.ttype = error_mark_node;
  5827.             }
  5828.             }
  5829.           else
  5830.             {
  5831.               error ("`sigof' in struct or class declaration");
  5832.               yyval.ttype = error_mark_node;
  5833.             }
  5834.         ;
  5835.     break;}
  5836. case 416:
  5837. #line 2340 "parse.y"
  5838. {
  5839.           if (current_aggr == signature_type_node)
  5840.             {
  5841.               if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ttype)))
  5842.             {
  5843.               sorry ("`sigof' as base signature specifier");
  5844.               /* need to return some dummy signature identifier */
  5845.               yyval.ttype = yyvsp[-1].ttype;
  5846.             }
  5847.               else
  5848.             {
  5849.               error ("`sigof' applied to non-aggregate expression");
  5850.               yyval.ttype = error_mark_node;
  5851.             }
  5852.             }
  5853.           else
  5854.             {
  5855.               error ("`sigof' in struct or class declaration");
  5856.               yyval.ttype = error_mark_node;
  5857.             }
  5858.         ;
  5859.     break;}
  5860. case 418:
  5861. #line 2366 "parse.y"
  5862. { if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
  5863.             sorry ("non-virtual access");
  5864.           yyval.itype = access_default_virtual; ;
  5865.     break;}
  5866. case 419:
  5867. #line 2370 "parse.y"
  5868. { int err = 0;
  5869.           if (yyvsp[0].itype == access_protected)
  5870.             {
  5871.               warning ("`protected' access not implemented");
  5872.               yyvsp[0].itype = access_public;
  5873.               err++;
  5874.             }
  5875.           else if (yyvsp[0].itype == access_public)
  5876.             {
  5877.               if (yyvsp[-1].itype == access_private)
  5878.             {
  5879.             mixed:
  5880.               error ("base class cannot be public and private");
  5881.             }
  5882.               else if (yyvsp[-1].itype == access_default_virtual)
  5883.             yyval.itype = access_public_virtual;
  5884.             }
  5885.           else /* $2 == access_private */
  5886.             {
  5887.               if (yyvsp[-1].itype == access_public)
  5888.             goto mixed;
  5889.               else if (yyvsp[-1].itype == access_default_virtual)
  5890.             yyval.itype = access_private_virtual;
  5891.             }
  5892.         ;
  5893.     break;}
  5894. case 420:
  5895. #line 2396 "parse.y"
  5896. { if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
  5897.             sorry ("non-virtual access");
  5898.           if (yyval.itype == access_public)
  5899.             yyval.itype = access_public_virtual;
  5900.           else if (yyval.itype == access_private)
  5901.             yyval.itype = access_private_virtual; ;
  5902.     break;}
  5903. case 421:
  5904. #line 2405 "parse.y"
  5905. { tree t = yyvsp[-1].ttype;
  5906.           push_obstacks_nochange ();
  5907.           end_temporary_allocation ();
  5908.  
  5909.           if (! IS_AGGR_TYPE (t))
  5910.             {
  5911.               t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
  5912.               TYPE_NAME (t) = get_identifier ("erroneous type");
  5913.             }
  5914.           if (TYPE_SIZE (t))
  5915.             duplicate_tag_error (t);
  5916.                   if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
  5917.                     {
  5918.                       t = make_lang_type (TREE_CODE (t));
  5919.                       pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
  5920.                       yyvsp[-1].ttype = t;
  5921.                     }
  5922.           pushclass (t, 0);
  5923.           TYPE_BEING_DEFINED (t) = 1;
  5924.           /* Reset the interface data, at the earliest possible
  5925.              moment, as it might have been set via a class foo;
  5926.              before.  */
  5927.           /* Don't change signatures.  */
  5928.           if (! IS_SIGNATURE (t))
  5929.             {
  5930.               extern tree pending_vtables;
  5931.               int needs_writing;
  5932.               tree name = TYPE_IDENTIFIER (t);
  5933.  
  5934.               CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
  5935.               SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, interface_unknown);
  5936.  
  5937.               /* Record how to set the access of this class's
  5938.              virtual functions.  If write_virtuals == 2 or 3, then
  5939.              inline virtuals are ``extern inline''.  */
  5940.               switch (write_virtuals)
  5941.             {
  5942.             case 0:
  5943.             case 1:
  5944.               needs_writing = 1;
  5945.               break;
  5946.             case 2:
  5947.               needs_writing = !! value_member (name, pending_vtables);
  5948.               break;
  5949.             case 3:
  5950.               needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
  5951.                 && CLASSTYPE_INTERFACE_KNOWN (t);
  5952.               break;
  5953.             default:
  5954.               needs_writing = 0;
  5955.             }
  5956.               CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
  5957.             }
  5958. #if 0
  5959.           t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
  5960.           if (t && IDENTIFIER_TEMPLATE (t))
  5961.             overload_template_name (t, 1);
  5962. #endif
  5963.         ;
  5964.     break;}
  5965. case 422:
  5966. #line 2468 "parse.y"
  5967. { yyval.ttype = NULL_TREE; ;
  5968.     break;}
  5969. case 423:
  5970. #line 2470 "parse.y"
  5971. {
  5972.           if (current_aggr == signature_type_node)
  5973.             yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
  5974.           else
  5975.             yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
  5976.         ;
  5977.     break;}
  5978. case 424:
  5979. #line 2477 "parse.y"
  5980. {
  5981.           tree visspec = (tree) yyvsp[-2].itype;
  5982.  
  5983.           if (current_aggr == signature_type_node)
  5984.             {
  5985.               error ("access specifier not allowed in signature");
  5986.               visspec = (tree) access_public;
  5987.             }
  5988.           yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
  5989.         ;
  5990.     break;}
  5991. case 425:
  5992. #line 2488 "parse.y"
  5993. {
  5994.           if (current_aggr == signature_type_node)
  5995.             error ("access specifier not allowed in signature");
  5996.         ;
  5997.     break;}
  5998. case 426:
  5999. #line 2498 "parse.y"
  6000. { if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE; 
  6001.         ;
  6002.     break;}
  6003. case 427:
  6004. #line 2501 "parse.y"
  6005. { /* In pushdecl, we created a reverse list of names
  6006.              in this binding level.  Make sure that the chain
  6007.              of what we're trying to add isn't the item itself
  6008.              (which can happen with what pushdecl's doing).  */
  6009.           if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
  6010.             {
  6011.               if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
  6012.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6013.               else
  6014.             yyval.ttype = yyvsp[0].ttype;
  6015.             }
  6016.         ;
  6017.     break;}
  6018. case 430:
  6019. #line 2519 "parse.y"
  6020. { error ("missing ';' before right brace");
  6021.           yyungetc ('}', 0); ;
  6022.     break;}
  6023. case 431:
  6024. #line 2524 "parse.y"
  6025. { yyval.ttype = finish_method (yyval.ttype); ;
  6026.     break;}
  6027. case 432:
  6028. #line 2526 "parse.y"
  6029. { yyval.ttype = finish_method (yyval.ttype); ;
  6030.     break;}
  6031. case 433:
  6032. #line 2534 "parse.y"
  6033. {
  6034.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6035.         ;
  6036.     break;}
  6037. case 434:
  6038. #line 2538 "parse.y"
  6039.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6040.         ;
  6041.     break;}
  6042. case 435:
  6043. #line 2542 "parse.y"
  6044. { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6045.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6046.     break;}
  6047. case 436:
  6048. #line 2545 "parse.y"
  6049. { yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
  6050.     break;}
  6051. case 437:
  6052. #line 2547 "parse.y"
  6053. { yyval.ttype = NULL_TREE; ;
  6054.     break;}
  6055. case 438:
  6056. #line 2558 "parse.y"
  6057. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-4].ttype),
  6058.                      yyvsp[-2].ttype, yyvsp[0].ttype);
  6059.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-4].ttype), NULL_TREE, NULL_TREE,
  6060.                   NULL_TREE); ;
  6061.     break;}
  6062. case 439:
  6063. #line 2563 "parse.y"
  6064. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-2].ttype),
  6065.                      empty_parms (), yyvsp[0].ttype);
  6066.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-2].ttype), NULL_TREE, NULL_TREE,
  6067.                   NULL_TREE); ;
  6068.     break;}
  6069. case 440:
  6070. #line 2572 "parse.y"
  6071. { yyval.ttype = NULL_TREE; ;
  6072.     break;}
  6073. case 442:
  6074. #line 2575 "parse.y"
  6075. {
  6076.           /* In this context, void_type_node encodes
  6077.              friends.  They have been recorded elsewhere.  */
  6078.           if (yyval.ttype == void_type_node)
  6079.             yyval.ttype = yyvsp[0].ttype;
  6080.           else
  6081.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6082.         ;
  6083.     break;}
  6084. case 443:
  6085. #line 2587 "parse.y"
  6086. { yyval.ttype = NULL_TREE; ;
  6087.     break;}
  6088. case 445:
  6089. #line 2590 "parse.y"
  6090. {
  6091.           /* In this context, void_type_node encodes
  6092.              friends.  They have been recorded elsewhere.  */
  6093.           if (yyval.ttype == void_type_node)
  6094.             yyval.ttype = yyvsp[0].ttype;
  6095.           else
  6096.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6097.         ;
  6098.     break;}
  6099. case 450:
  6100. #line 2612 "parse.y"
  6101. { current_declspecs = yyvsp[-4].ttype;
  6102.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6103.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6104.     break;}
  6105. case 451:
  6106. #line 2616 "parse.y"
  6107. { current_declspecs = yyvsp[-6].ttype;
  6108.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6109.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6110.     break;}
  6111. case 452:
  6112. #line 2620 "parse.y"
  6113. { current_declspecs = yyvsp[-4].ttype;
  6114.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6115.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6116.     break;}
  6117. case 453:
  6118. #line 2627 "parse.y"
  6119. { current_declspecs = yyvsp[-4].ttype;
  6120.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6121.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6122.     break;}
  6123. case 454:
  6124. #line 2631 "parse.y"
  6125. { current_declspecs = yyvsp[-6].ttype;
  6126.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6127.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6128.     break;}
  6129. case 455:
  6130. #line 2635 "parse.y"
  6131. { current_declspecs = yyvsp[-4].ttype;
  6132.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6133.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6134.     break;}
  6135. case 456:
  6136. #line 2639 "parse.y"
  6137. { current_declspecs = yyvsp[-3].ttype;
  6138.           yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6139.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6140.     break;}
  6141. case 457:
  6142. #line 2646 "parse.y"
  6143. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6144.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6145.     break;}
  6146. case 458:
  6147. #line 2649 "parse.y"
  6148. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6149.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6150.     break;}
  6151. case 459:
  6152. #line 2652 "parse.y"
  6153. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6154.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6155.     break;}
  6156. case 460:
  6157. #line 2658 "parse.y"
  6158. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6159.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6160.     break;}
  6161. case 461:
  6162. #line 2661 "parse.y"
  6163. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6164.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6165.     break;}
  6166. case 462:
  6167. #line 2664 "parse.y"
  6168. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6169.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6170.     break;}
  6171. case 463:
  6172. #line 2667 "parse.y"
  6173. { yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6174.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6175.     break;}
  6176. case 465:
  6177. #line 2678 "parse.y"
  6178. { TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  6179.     break;}
  6180. case 466:
  6181. #line 2683 "parse.y"
  6182. { yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
  6183.     break;}
  6184. case 467:
  6185. #line 2685 "parse.y"
  6186. { yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
  6187.     break;}
  6188. case 468:
  6189. #line 2691 "parse.y"
  6190. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  6191.     break;}
  6192. case 469:
  6193. #line 2693 "parse.y"
  6194. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  6195.     break;}
  6196. case 470:
  6197. #line 2697 "parse.y"
  6198. {
  6199.           if (flag_ansi)
  6200.             pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
  6201.           yyval.ttype = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ttype), yyvsp[-1].ttype);
  6202.           yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
  6203.         ;
  6204.     break;}
  6205. case 471:
  6206. #line 2707 "parse.y"
  6207. { yyval.ttype = NULL_TREE; ;
  6208.     break;}
  6209. case 472:
  6210. #line 2709 "parse.y"
  6211. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6212.     break;}
  6213. case 473:
  6214. #line 2714 "parse.y"
  6215. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  6216.     break;}
  6217. case 474:
  6218. #line 2716 "parse.y"
  6219. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6220.     break;}
  6221. case 475:
  6222. #line 2724 "parse.y"
  6223. { yyval.itype = suspend_momentary (); ;
  6224.     break;}
  6225. case 476:
  6226. #line 2725 "parse.y"
  6227. { resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
  6228.     break;}
  6229. case 477:
  6230. #line 2732 "parse.y"
  6231. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6232.     break;}
  6233. case 478:
  6234. #line 2734 "parse.y"
  6235. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6236.     break;}
  6237. case 479:
  6238. #line 2736 "parse.y"
  6239. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6240.     break;}
  6241. case 480:
  6242. #line 2738 "parse.y"
  6243. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6244.     break;}
  6245. case 481:
  6246. #line 2740 "parse.y"
  6247. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6248.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6249.         ;
  6250.     break;}
  6251. case 483:
  6252. #line 2748 "parse.y"
  6253. {
  6254.           /* Remember that this name has been used in the class
  6255.              definition, as per [class.scope0] */
  6256.           if (current_class_type
  6257.               && TYPE_BEING_DEFINED (current_class_type)
  6258.               && ! IDENTIFIER_CLASS_VALUE (yyval.ttype))
  6259.             {
  6260.               tree t = lookup_name (yyval.ttype, -2);
  6261.               if (t)
  6262.             pushdecl_class_level (t);
  6263.             }
  6264.         ;
  6265.     break;}
  6266. case 485:
  6267. #line 2765 "parse.y"
  6268. { yyval.ttype = yyvsp[0].ttype; ;
  6269.     break;}
  6270. case 486:
  6271. #line 2770 "parse.y"
  6272. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6273.     break;}
  6274. case 487:
  6275. #line 2772 "parse.y"
  6276. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6277.     break;}
  6278. case 488:
  6279. #line 2774 "parse.y"
  6280. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6281.     break;}
  6282. case 489:
  6283. #line 2776 "parse.y"
  6284. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6285.     break;}
  6286. case 490:
  6287. #line 2778 "parse.y"
  6288. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6289.     break;}
  6290. case 491:
  6291. #line 2780 "parse.y"
  6292. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6293.     break;}
  6294. case 492:
  6295. #line 2782 "parse.y"
  6296. { yyval.ttype = yyvsp[-1].ttype; ;
  6297.     break;}
  6298. case 493:
  6299. #line 2784 "parse.y"
  6300. { push_nested_class (TREE_TYPE (yyval.ttype), 3);
  6301.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
  6302.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  6303.     break;}
  6304. case 495:
  6305. #line 2795 "parse.y"
  6306. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6307.     break;}
  6308. case 496:
  6309. #line 2797 "parse.y"
  6310. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6311.     break;}
  6312. case 497:
  6313. #line 2799 "parse.y"
  6314. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6315.     break;}
  6316. case 498:
  6317. #line 2801 "parse.y"
  6318. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6319.     break;}
  6320. case 499:
  6321. #line 2803 "parse.y"
  6322. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6323.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6324.         ;
  6325.     break;}
  6326. case 501:
  6327. #line 2811 "parse.y"
  6328. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6329.     break;}
  6330. case 502:
  6331. #line 2813 "parse.y"
  6332. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6333.     break;}
  6334. case 503:
  6335. #line 2815 "parse.y"
  6336. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6337.     break;}
  6338. case 504:
  6339. #line 2817 "parse.y"
  6340. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6341.     break;}
  6342. case 505:
  6343. #line 2819 "parse.y"
  6344. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6345.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6346.         ;
  6347.     break;}
  6348. case 507:
  6349. #line 2827 "parse.y"
  6350. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6351.     break;}
  6352. case 508:
  6353. #line 2829 "parse.y"
  6354. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6355.     break;}
  6356. case 509:
  6357. #line 2831 "parse.y"
  6358. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6359.     break;}
  6360. case 510:
  6361. #line 2833 "parse.y"
  6362. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6363.     break;}
  6364. case 511:
  6365. #line 2835 "parse.y"
  6366. { yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
  6367.     break;}
  6368. case 512:
  6369. #line 2837 "parse.y"
  6370. { yyval.ttype = yyvsp[-1].ttype; ;
  6371.     break;}
  6372. case 513:
  6373. #line 2839 "parse.y"
  6374. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6375.     break;}
  6376. case 514:
  6377. #line 2841 "parse.y"
  6378. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6379.     break;}
  6380. case 515:
  6381. #line 2846 "parse.y"
  6382. { got_scope = NULL_TREE;
  6383.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6384.     break;}
  6385. case 516:
  6386. #line 2852 "parse.y"
  6387. { got_scope = NULL_TREE;
  6388.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6389.     break;}
  6390. case 518:
  6391. #line 2859 "parse.y"
  6392. { yyval.ttype = yyvsp[0].ttype; ;
  6393.     break;}
  6394. case 519:
  6395. #line 2864 "parse.y"
  6396. { yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
  6397.     break;}
  6398. case 520:
  6399. #line 2866 "parse.y"
  6400. { yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
  6401.     break;}
  6402. case 521:
  6403. #line 2868 "parse.y"
  6404. { yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
  6405.     break;}
  6406. case 525:
  6407. #line 2879 "parse.y"
  6408. { yyval.ttype = yyvsp[0].ttype; ;
  6409.     break;}
  6410. case 526:
  6411. #line 2886 "parse.y"
  6412. { got_scope = TREE_TYPE (yyval.ttype); ;
  6413.     break;}
  6414. case 527:
  6415. #line 2888 "parse.y"
  6416. { got_scope = TREE_TYPE (yyval.ttype); ;
  6417.     break;}
  6418. case 529:
  6419. #line 2904 "parse.y"
  6420. { yyval.ttype = yyvsp[0].ttype; ;
  6421.     break;}
  6422. case 531:
  6423. #line 2910 "parse.y"
  6424. { yyval.ttype = yyvsp[0].ttype; ;
  6425.     break;}
  6426. case 532:
  6427. #line 2915 "parse.y"
  6428. { got_scope = NULL_TREE; ;
  6429.     break;}
  6430. case 533:
  6431. #line 2917 "parse.y"
  6432. { yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
  6433.     break;}
  6434. case 534:
  6435. #line 2924 "parse.y"
  6436. { got_scope = void_type_node; ;
  6437.     break;}
  6438. case 535:
  6439. #line 2930 "parse.y"
  6440. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6441.     break;}
  6442. case 536:
  6443. #line 2932 "parse.y"
  6444. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6445.     break;}
  6446. case 537:
  6447. #line 2934 "parse.y"
  6448. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6449.     break;}
  6450. case 538:
  6451. #line 2936 "parse.y"
  6452. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6453.     break;}
  6454. case 539:
  6455. #line 2938 "parse.y"
  6456. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6457.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6458.         ;
  6459.     break;}
  6460. case 540:
  6461. #line 2942 "parse.y"
  6462. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6463.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6464.         ;
  6465.     break;}
  6466. case 542:
  6467. #line 2951 "parse.y"
  6468. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6469.     break;}
  6470. case 543:
  6471. #line 2953 "parse.y"
  6472. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6473.     break;}
  6474. case 544:
  6475. #line 2959 "parse.y"
  6476. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6477.     break;}
  6478. case 545:
  6479. #line 2961 "parse.y"
  6480. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6481.     break;}
  6482. case 546:
  6483. #line 2963 "parse.y"
  6484. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6485.     break;}
  6486. case 547:
  6487. #line 2965 "parse.y"
  6488. { yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
  6489.     break;}
  6490. case 548:
  6491. #line 2967 "parse.y"
  6492. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6493.     break;}
  6494. case 549:
  6495. #line 2969 "parse.y"
  6496. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6497.     break;}
  6498. case 550:
  6499. #line 2971 "parse.y"
  6500. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6501.     break;}
  6502. case 551:
  6503. #line 2973 "parse.y"
  6504. { yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
  6505.     break;}
  6506. case 552:
  6507. #line 2975 "parse.y"
  6508. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6509.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6510.         ;
  6511.     break;}
  6512. case 553:
  6513. #line 2979 "parse.y"
  6514. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6515.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6516.         ;
  6517.     break;}
  6518. case 555:
  6519. #line 2988 "parse.y"
  6520. { yyval.ttype = yyvsp[-1].ttype; ;
  6521.     break;}
  6522. case 557:
  6523. #line 2992 "parse.y"
  6524. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6525.     break;}
  6526. case 558:
  6527. #line 2994 "parse.y"
  6528. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6529.     break;}
  6530. case 559:
  6531. #line 2996 "parse.y"
  6532. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6533.     break;}
  6534. case 560:
  6535. #line 2998 "parse.y"
  6536. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6537.     break;}
  6538. case 561:
  6539. #line 3000 "parse.y"
  6540. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6541.     break;}
  6542. case 562:
  6543. #line 3002 "parse.y"
  6544. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6545.     break;}
  6546. case 563:
  6547. #line 3004 "parse.y"
  6548. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6549.     break;}
  6550. case 564:
  6551. #line 3006 "parse.y"
  6552. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6553.     break;}
  6554. case 565:
  6555. #line 3008 "parse.y"
  6556. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  6557.     break;}
  6558. case 571:
  6559. #line 3030 "parse.y"
  6560. { emit_line_note (input_filename, lineno);
  6561.           pushlevel (0);
  6562.           clear_last_expr ();
  6563.           push_momentary ();
  6564.           expand_start_bindings (0); ;
  6565.     break;}
  6566. case 573:
  6567. #line 3042 "parse.y"
  6568. { if (flag_ansi)
  6569.             pedwarn ("ANSI C++ forbids label declarations"); ;
  6570.     break;}
  6571. case 576:
  6572. #line 3053 "parse.y"
  6573. { tree link;
  6574.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  6575.             {
  6576.               tree label = shadow_label (TREE_VALUE (link));
  6577.               C_DECLARED_LABEL_FLAG (label) = 1;
  6578.               declare_nonlocal_label (label);
  6579.             }
  6580.         ;
  6581.     break;}
  6582. case 577:
  6583. #line 3067 "parse.y"
  6584. {;
  6585.     break;}
  6586. case 579:
  6587. #line 3072 "parse.y"
  6588. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6589.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6590.           pop_momentary (); ;
  6591.     break;}
  6592. case 580:
  6593. #line 3076 "parse.y"
  6594. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6595.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6596.           pop_momentary (); ;
  6597.     break;}
  6598. case 581:
  6599. #line 3080 "parse.y"
  6600. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6601.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6602.           pop_momentary (); ;
  6603.     break;}
  6604. case 582:
  6605. #line 3084 "parse.y"
  6606. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6607.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6608.           pop_momentary (); ;
  6609.     break;}
  6610. case 583:
  6611. #line 3091 "parse.y"
  6612. { cond_stmt_keyword = "if"; ;
  6613.     break;}
  6614. case 584:
  6615. #line 3093 "parse.y"
  6616. { emit_line_note (input_filename, lineno);
  6617.           expand_start_cond (yyvsp[0].ttype, 0); ;
  6618.     break;}
  6619. case 586:
  6620. #line 3100 "parse.y"
  6621. { finish_stmt (); ;
  6622.     break;}
  6623. case 587:
  6624. #line 3102 "parse.y"
  6625. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6626.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6627.           pop_momentary (); ;
  6628.     break;}
  6629. case 588:
  6630. #line 3109 "parse.y"
  6631. { finish_stmt (); ;
  6632.     break;}
  6633. case 590:
  6634. #line 3115 "parse.y"
  6635. { finish_stmt (); ;
  6636.     break;}
  6637. case 591:
  6638. #line 3117 "parse.y"
  6639. {
  6640.           tree expr = yyvsp[-1].ttype;
  6641.           emit_line_note (input_filename, lineno);
  6642.           /* Do default conversion if safe and possibly important,
  6643.              in case within ({...}).  */
  6644.           if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
  6645.                && lvalue_p (expr))
  6646.               || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
  6647.             expr = default_conversion (expr);
  6648.           cplus_expand_expr_stmt (expr);
  6649.           clear_momentary ();
  6650.           finish_stmt (); ;
  6651.     break;}
  6652. case 592:
  6653. #line 3130 "parse.y"
  6654. { expand_start_else (); ;
  6655.     break;}
  6656. case 593:
  6657. #line 3132 "parse.y"
  6658. { expand_end_cond ();
  6659.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6660.           poplevel (kept_level_p (), 1, 0);
  6661.           pop_momentary ();
  6662.           finish_stmt (); ;
  6663.     break;}
  6664. case 594:
  6665. #line 3138 "parse.y"
  6666. { expand_end_cond ();
  6667.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6668.           poplevel (kept_level_p (), 1, 0);
  6669.           pop_momentary ();
  6670.           finish_stmt (); ;
  6671.     break;}
  6672. case 595:
  6673. #line 3144 "parse.y"
  6674. { emit_nop ();
  6675.           emit_line_note (input_filename, lineno);
  6676.           expand_start_loop (1);
  6677.           cond_stmt_keyword = "while"; ;
  6678.     break;}
  6679. case 596:
  6680. #line 3149 "parse.y"
  6681. { expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
  6682.     break;}
  6683. case 597:
  6684. #line 3151 "parse.y"
  6685. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6686.           poplevel (kept_level_p (), 1, 0);
  6687.           pop_momentary ();
  6688.           expand_end_loop ();
  6689.           finish_stmt (); ;
  6690.     break;}
  6691. case 598:
  6692. #line 3157 "parse.y"
  6693. { emit_nop ();
  6694.           emit_line_note (input_filename, lineno);
  6695.           expand_start_loop_continue_elsewhere (1); ;
  6696.     break;}
  6697. case 599:
  6698. #line 3161 "parse.y"
  6699. { expand_loop_continue_here ();
  6700.           cond_stmt_keyword = "do"; ;
  6701.     break;}
  6702. case 600:
  6703. #line 3164 "parse.y"
  6704. { emit_line_note (input_filename, lineno);
  6705.           expand_exit_loop_if_false (0, yyvsp[-1].ttype);
  6706.           expand_end_loop ();
  6707.           clear_momentary ();
  6708.           finish_stmt (); ;
  6709.     break;}
  6710. case 601:
  6711. #line 3170 "parse.y"
  6712. { emit_nop ();
  6713.           emit_line_note (input_filename, lineno);
  6714.           if (yyvsp[0].ttype) cplus_expand_expr_stmt (yyvsp[0].ttype);
  6715.           expand_start_loop_continue_elsewhere (1); ;
  6716.     break;}
  6717. case 602:
  6718. #line 3175 "parse.y"
  6719. { emit_line_note (input_filename, lineno);
  6720.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6721.     break;}
  6722. case 603:
  6723. #line 3180 "parse.y"
  6724. { push_momentary (); ;
  6725.     break;}
  6726. case 604:
  6727. #line 3182 "parse.y"
  6728. { emit_line_note (input_filename, lineno);
  6729.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6730.           poplevel (kept_level_p (), 1, 0);
  6731.           pop_momentary ();
  6732.           expand_loop_continue_here ();
  6733.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6734.           pop_momentary ();
  6735.           expand_end_loop ();
  6736.           finish_stmt (); ;
  6737.     break;}
  6738. case 605:
  6739. #line 3192 "parse.y"
  6740. { emit_nop ();
  6741.           emit_line_note (input_filename, lineno);
  6742.           expand_start_loop_continue_elsewhere (1); ;
  6743.     break;}
  6744. case 606:
  6745. #line 3196 "parse.y"
  6746. { emit_line_note (input_filename, lineno);
  6747.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6748.     break;}
  6749. case 607:
  6750. #line 3201 "parse.y"
  6751. { push_momentary ();
  6752.           yyvsp[0].itype = lineno; ;
  6753.     break;}
  6754. case 608:
  6755. #line 3204 "parse.y"
  6756. { emit_line_note (input_filename, (int) yyvsp[-2].itype);
  6757.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6758.           poplevel (kept_level_p (), 1, 0);
  6759.           pop_momentary ();
  6760.           expand_loop_continue_here ();
  6761.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6762.           pop_momentary ();
  6763.           expand_end_loop ();
  6764.           finish_stmt ();
  6765.         ;
  6766.     break;}
  6767. case 609:
  6768. #line 3215 "parse.y"
  6769. { emit_line_note (input_filename, lineno);
  6770.           c_expand_start_case (yyvsp[-1].ttype);
  6771.           /* Don't let the tree nodes for $4 be discarded by
  6772.              clear_momentary during the parsing of the next stmt.  */
  6773.           push_momentary (); ;
  6774.     break;}
  6775. case 610:
  6776. #line 3221 "parse.y"
  6777. { expand_end_case (yyvsp[-3].ttype);
  6778.           pop_momentary ();
  6779.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6780.           poplevel (kept_level_p (), 1, 0);
  6781.           pop_momentary ();
  6782.           finish_stmt (); ;
  6783.     break;}
  6784. case 611:
  6785. #line 3228 "parse.y"
  6786. { register tree value = check_cp_case_value (yyvsp[-1].ttype);
  6787.           register tree label
  6788.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6789.  
  6790.           if (value != error_mark_node)
  6791.             {
  6792.               tree duplicate;
  6793.               int success = pushcase (value, convert_and_check,
  6794.                           label, &duplicate);
  6795.               if (success == 1)
  6796.             cp_error ("case label `%E' not within a switch statement", yyvsp[-1].ttype);
  6797.               else if (success == 2)
  6798.             {
  6799.               cp_error ("duplicate case value `%E'", yyvsp[-1].ttype);
  6800.               cp_error_at ("`%E' previously used here", duplicate);
  6801.             }
  6802.               else if (success == 3)
  6803.             warning ("case value out of range");
  6804.               else if (success == 5)
  6805.             cp_error ("case label `%E' within scope of cleanup or variable array", yyvsp[-1].ttype);
  6806.             }
  6807.           define_case_label (label);
  6808.         ;
  6809.     break;}
  6810. case 613:
  6811. #line 3253 "parse.y"
  6812. { register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
  6813.           register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
  6814.           register tree label
  6815.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6816.  
  6817.           if (flag_ansi)
  6818.             pedwarn ("ANSI C++ forbids range expressions in switch statement");
  6819.           if (value1 != error_mark_node
  6820.               && value2 != error_mark_node)
  6821.             {
  6822.               tree duplicate;
  6823.               int success = pushcase_range (value1, value2,
  6824.                             convert_and_check, label,
  6825.                             &duplicate);
  6826.               if (success == 1)
  6827.             error ("case label not within a switch statement");
  6828.               else if (success == 2)
  6829.             {
  6830.               error ("duplicate (or overlapping) case value");
  6831.               error_with_decl (duplicate, "this is the first entry overlapping that value");
  6832.             }
  6833.               else if (success == 3)
  6834.             warning ("case value out of range");
  6835.               else if (success == 4)
  6836.             warning ("empty range specified");
  6837.               else if (success == 5)
  6838.             error ("case label within scope of cleanup or variable array");
  6839.             }
  6840.           define_case_label (label);
  6841.         ;
  6842.     break;}
  6843. case 615:
  6844. #line 3285 "parse.y"
  6845. {
  6846.           tree duplicate;
  6847.           register tree label
  6848.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6849.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  6850.           if (success == 1)
  6851.             error ("default label not within a switch statement");
  6852.           else if (success == 2)
  6853.             {
  6854.               error ("multiple default labels in one switch");
  6855.               error_with_decl (duplicate, "this is the first default label");
  6856.             }
  6857.           define_case_label (NULL_TREE);
  6858.         ;
  6859.     break;}
  6860. case 617:
  6861. #line 3301 "parse.y"
  6862. { emit_line_note (input_filename, lineno);
  6863.           if ( ! expand_exit_something ())
  6864.             error ("break statement not within loop or switch"); ;
  6865.     break;}
  6866. case 618:
  6867. #line 3305 "parse.y"
  6868. { emit_line_note (input_filename, lineno);
  6869.           if (! expand_continue_loop (0))
  6870.             error ("continue statement not within a loop"); ;
  6871.     break;}
  6872. case 619:
  6873. #line 3309 "parse.y"
  6874. { emit_line_note (input_filename, lineno);
  6875.           c_expand_return (NULL_TREE); ;
  6876.     break;}
  6877. case 620:
  6878. #line 3312 "parse.y"
  6879. { emit_line_note (input_filename, lineno);
  6880.           c_expand_return (yyvsp[-1].ttype);
  6881.           finish_stmt ();
  6882.         ;
  6883.     break;}
  6884. case 621:
  6885. #line 3317 "parse.y"
  6886. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  6887.           emit_line_note (input_filename, lineno);
  6888.           expand_asm (yyvsp[-2].ttype);
  6889.           finish_stmt ();
  6890.         ;
  6891.     break;}
  6892. case 622:
  6893. #line 3324 "parse.y"
  6894. { if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
  6895.           emit_line_note (input_filename, lineno);
  6896.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  6897.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  6898.                      input_filename, lineno);
  6899.           finish_stmt ();
  6900.         ;
  6901.     break;}
  6902. case 623:
  6903. #line 3333 "parse.y"
  6904. { if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
  6905.           emit_line_note (input_filename, lineno);
  6906.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  6907.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  6908.                      input_filename, lineno);
  6909.           finish_stmt ();
  6910.         ;
  6911.     break;}
  6912. case 624:
  6913. #line 3343 "parse.y"
  6914. { if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
  6915.           emit_line_note (input_filename, lineno);
  6916.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  6917.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  6918.                      input_filename, lineno);
  6919.           finish_stmt ();
  6920.         ;
  6921.     break;}
  6922. case 625:
  6923. #line 3351 "parse.y"
  6924. { emit_line_note (input_filename, lineno);
  6925.           expand_computed_goto (yyvsp[-1].ttype); ;
  6926.     break;}
  6927. case 626:
  6928. #line 3354 "parse.y"
  6929. { tree decl;
  6930.           emit_line_note (input_filename, lineno);
  6931.           decl = lookup_label (yyvsp[-1].ttype);
  6932.           TREE_USED (decl) = 1;
  6933.           expand_goto (decl); ;
  6934.     break;}
  6935. case 627:
  6936. #line 3360 "parse.y"
  6937. { finish_stmt (); ;
  6938.     break;}
  6939. case 628:
  6940. #line 3362 "parse.y"
  6941. { error ("label must be followed by statement");
  6942.           yyungetc ('}', 0);
  6943.           finish_stmt (); ;
  6944.     break;}
  6945. case 629:
  6946. #line 3366 "parse.y"
  6947. { finish_stmt (); ;
  6948.     break;}
  6949. case 631:
  6950. #line 3372 "parse.y"
  6951. { expand_start_try_stmts (); ;
  6952.     break;}
  6953. case 632:
  6954. #line 3374 "parse.y"
  6955. { expand_end_try_stmts ();
  6956.           expand_start_all_catch (); ;
  6957.     break;}
  6958. case 633:
  6959. #line 3377 "parse.y"
  6960. { expand_end_all_catch (); ;
  6961.     break;}
  6962. case 634:
  6963. #line 3385 "parse.y"
  6964. { expand_end_bindings (0,1,1);
  6965.           poplevel (2,0,0);
  6966.         ;
  6967.     break;}
  6968. case 635:
  6969. #line 3389 "parse.y"
  6970. { expand_end_bindings (0,1,1);
  6971.           poplevel (2,0,0);
  6972.         ;
  6973.     break;}
  6974. case 636:
  6975. #line 3393 "parse.y"
  6976. { expand_end_bindings (0,1,1);
  6977.           poplevel (2,0,0);
  6978.         ;
  6979.     break;}
  6980. case 638:
  6981. #line 3401 "parse.y"
  6982. { emit_line_note (input_filename, lineno); ;
  6983.     break;}
  6984. case 639:
  6985. #line 3403 "parse.y"
  6986. { expand_end_catch_block (); ;
  6987.     break;}
  6988. case 642:
  6989. #line 3413 "parse.y"
  6990. { expand_start_catch_block (NULL_TREE, NULL_TREE); ;
  6991.     break;}
  6992. case 643:
  6993. #line 3425 "parse.y"
  6994. { expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
  6995.                         TREE_VALUE (yyvsp[-1].ttype)); ;
  6996.     break;}
  6997. case 644:
  6998. #line 3431 "parse.y"
  6999. { tree label;
  7000.         do_label:
  7001.           label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  7002.           if (label)
  7003.             expand_label (label);
  7004.         ;
  7005.     break;}
  7006. case 645:
  7007. #line 3438 "parse.y"
  7008. { goto do_label; ;
  7009.     break;}
  7010. case 646:
  7011. #line 3440 "parse.y"
  7012. { goto do_label; ;
  7013.     break;}
  7014. case 647:
  7015. #line 3445 "parse.y"
  7016. { yyval.ttype = NULL_TREE; ;
  7017.     break;}
  7018. case 648:
  7019. #line 3447 "parse.y"
  7020. { yyval.ttype = yyvsp[-1].ttype; ;
  7021.     break;}
  7022. case 649:
  7023. #line 3449 "parse.y"
  7024. { yyval.ttype = NULL_TREE; ;
  7025.     break;}
  7026. case 650:
  7027. #line 3454 "parse.y"
  7028. { yyval.itype = 0; ;
  7029.     break;}
  7030. case 651:
  7031. #line 3456 "parse.y"
  7032. { yyval.itype = 0; ;
  7033.     break;}
  7034. case 652:
  7035. #line 3458 "parse.y"
  7036. { yyval.itype = 1; ;
  7037.     break;}
  7038. case 653:
  7039. #line 3460 "parse.y"
  7040. { yyval.itype = -1; ;
  7041.     break;}
  7042. case 654:
  7043. #line 3467 "parse.y"
  7044. { emit_line_note (input_filename, lineno);
  7045.           yyval.ttype = NULL_TREE; ;
  7046.     break;}
  7047. case 655:
  7048. #line 3470 "parse.y"
  7049. { emit_line_note (input_filename, lineno); ;
  7050.     break;}
  7051. case 656:
  7052. #line 3475 "parse.y"
  7053. { yyval.ttype = NULL_TREE; ;
  7054.     break;}
  7055. case 658:
  7056. #line 3478 "parse.y"
  7057. { yyval.ttype = NULL_TREE; ;
  7058.     break;}
  7059. case 659:
  7060. #line 3484 "parse.y"
  7061. { yyval.ttype = NULL_TREE; ;
  7062.     break;}
  7063. case 662:
  7064. #line 3491 "parse.y"
  7065. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7066.     break;}
  7067. case 663:
  7068. #line 3496 "parse.y"
  7069. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
  7070.     break;}
  7071. case 664:
  7072. #line 3501 "parse.y"
  7073. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
  7074.     break;}
  7075. case 665:
  7076. #line 3503 "parse.y"
  7077. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  7078.     break;}
  7079. case 666:
  7080. #line 3513 "parse.y"
  7081. {
  7082.           if (strict_prototype)
  7083.             yyval.ttype = void_list_node;
  7084.           else
  7085.             yyval.ttype = NULL_TREE;
  7086.         ;
  7087.     break;}
  7088. case 668:
  7089. #line 3521 "parse.y"
  7090. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7091.           TREE_PARMLIST (yyval.ttype) = 1; ;
  7092.     break;}
  7093. case 669:
  7094. #line 3529 "parse.y"
  7095. {
  7096.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7097.           TREE_PARMLIST (yyval.ttype) = 1;
  7098.         ;
  7099.     break;}
  7100. case 670:
  7101. #line 3534 "parse.y"
  7102. {
  7103.           TREE_PARMLIST (yyval.ttype) = 1;
  7104.         ;
  7105.     break;}
  7106. case 671:
  7107. #line 3539 "parse.y"
  7108. {
  7109.           TREE_PARMLIST (yyval.ttype) = 1;
  7110.         ;
  7111.     break;}
  7112. case 672:
  7113. #line 3543 "parse.y"
  7114. {
  7115.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); 
  7116.           TREE_PARMLIST (yyval.ttype) = 1;
  7117.         ;
  7118.     break;}
  7119. case 673:
  7120. #line 3548 "parse.y"
  7121. {
  7122.           /* ARM $8.2.5 has this as a boxed-off comment.  */
  7123.           if (pedantic)
  7124.             warning ("use of `...' without a first argument is non-portable");
  7125.           yyval.ttype = NULL_TREE;
  7126.         ;
  7127.     break;}
  7128. case 674:
  7129. #line 3555 "parse.y"
  7130. {
  7131.           TREE_PARMLIST (yyval.ttype) = 1;
  7132.         ;
  7133.     break;}
  7134. case 675:
  7135. #line 3559 "parse.y"
  7136. {
  7137.           TREE_PARMLIST (yyval.ttype) = 1;
  7138.         ;
  7139.     break;}
  7140. case 676:
  7141. #line 3563 "parse.y"
  7142. {
  7143.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
  7144.           TREE_PARMLIST (yyval.ttype) = 1;
  7145.         ;
  7146.     break;}
  7147. case 677:
  7148. #line 3568 "parse.y"
  7149. {
  7150.           /* This helps us recover from really nasty
  7151.              parse errors, for example, a missing right
  7152.              parenthesis.  */
  7153.           yyerror ("possibly missing ')'");
  7154.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7155.           TREE_PARMLIST (yyval.ttype) = 1;
  7156.           yyungetc (':', 0);
  7157.           yychar = ')';
  7158.         ;
  7159.     break;}
  7160. case 678:
  7161. #line 3579 "parse.y"
  7162. {
  7163.           /* This helps us recover from really nasty
  7164.              parse errors, for example, a missing right
  7165.              parenthesis.  */
  7166.           yyerror ("possibly missing ')'");
  7167.           yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7168.           TREE_PARMLIST (yyval.ttype) = 1;
  7169.           yyungetc (':', 0);
  7170.           yychar = ')';
  7171.         ;
  7172.     break;}
  7173. case 679:
  7174. #line 3594 "parse.y"
  7175. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7176.     break;}
  7177. case 680:
  7178. #line 3596 "parse.y"
  7179. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7180.     break;}
  7181. case 681:
  7182. #line 3598 "parse.y"
  7183. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7184.     break;}
  7185. case 682:
  7186. #line 3600 "parse.y"
  7187. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  7188.     break;}
  7189. case 683:
  7190. #line 3602 "parse.y"
  7191. { yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
  7192.     break;}
  7193. case 685:
  7194. #line 3608 "parse.y"
  7195. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7196.     break;}
  7197. case 686:
  7198. #line 3631 "parse.y"
  7199. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7200.     break;}
  7201. case 687:
  7202. #line 3633 "parse.y"
  7203. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7204.     break;}
  7205. case 688:
  7206. #line 3635 "parse.y"
  7207. { yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  7208.     break;}
  7209. case 689:
  7210. #line 3637 "parse.y"
  7211. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7212.     break;}
  7213. case 690:
  7214. #line 3639 "parse.y"
  7215. { yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
  7216.     break;}
  7217. case 691:
  7218. #line 3641 "parse.y"
  7219. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7220.     break;}
  7221. case 692:
  7222. #line 3646 "parse.y"
  7223. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7224.     break;}
  7225. case 693:
  7226. #line 3648 "parse.y"
  7227. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7228.     break;}
  7229. case 696:
  7230. #line 3657 "parse.y"
  7231. { see_typename (); ;
  7232.     break;}
  7233. case 697:
  7234. #line 3680 "parse.y"
  7235. {
  7236.           warning ("type specifier omitted for parameter");
  7237.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-1].ttype)), NULL_TREE);
  7238.         ;
  7239.     break;}
  7240. case 698:
  7241. #line 3685 "parse.y"
  7242. {
  7243.           warning ("type specifier omitted for parameter");
  7244.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-2].ttype)), yyval.ttype);
  7245.         ;
  7246.     break;}
  7247. case 699:
  7248. #line 3693 "parse.y"
  7249. { yyval.ttype = NULL_TREE; ;
  7250.     break;}
  7251. case 700:
  7252. #line 3695 "parse.y"
  7253. { yyval.ttype = yyvsp[-1].ttype; ;
  7254.     break;}
  7255. case 701:
  7256. #line 3700 "parse.y"
  7257. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  7258.     break;}
  7259. case 703:
  7260. #line 3706 "parse.y"
  7261. {
  7262.           TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
  7263.           yyval.ttype = yyvsp[0].ttype;
  7264.         ;
  7265.     break;}
  7266. case 704:
  7267. #line 3714 "parse.y"
  7268. { yyval.ttype = NULL_TREE; ;
  7269.     break;}
  7270. case 705:
  7271. #line 3716 "parse.y"
  7272. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7273.     break;}
  7274. case 706:
  7275. #line 3718 "parse.y"
  7276. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7277.     break;}
  7278. case 707:
  7279. #line 3720 "parse.y"
  7280. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  7281.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  7282.         ;
  7283.     break;}
  7284. case 708:
  7285. #line 3726 "parse.y"
  7286. { got_scope = NULL_TREE; ;
  7287.     break;}
  7288. case 709:
  7289. #line 3731 "parse.y"
  7290. { yyval.ttype = ansi_opname[MULT_EXPR]; ;
  7291.     break;}
  7292. case 710:
  7293. #line 3733 "parse.y"
  7294. { yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
  7295.     break;}
  7296. case 711:
  7297. #line 3735 "parse.y"
  7298. { yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
  7299.     break;}
  7300. case 712:
  7301. #line 3737 "parse.y"
  7302. { yyval.ttype = ansi_opname[PLUS_EXPR]; ;
  7303.     break;}
  7304. case 713:
  7305. #line 3739 "parse.y"
  7306. { yyval.ttype = ansi_opname[MINUS_EXPR]; ;
  7307.     break;}
  7308. case 714:
  7309. #line 3741 "parse.y"
  7310. { yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
  7311.     break;}
  7312. case 715:
  7313. #line 3743 "parse.y"
  7314. { yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
  7315.     break;}
  7316. case 716:
  7317. #line 3745 "parse.y"
  7318. { yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
  7319.     break;}
  7320. case 717:
  7321. #line 3747 "parse.y"
  7322. { yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
  7323.     break;}
  7324. case 718:
  7325. #line 3749 "parse.y"
  7326. { yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
  7327.     break;}
  7328. case 719:
  7329. #line 3751 "parse.y"
  7330. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7331.     break;}
  7332. case 720:
  7333. #line 3753 "parse.y"
  7334. { yyval.ttype = ansi_opname[LT_EXPR]; ;
  7335.     break;}
  7336. case 721:
  7337. #line 3755 "parse.y"
  7338. { yyval.ttype = ansi_opname[GT_EXPR]; ;
  7339.     break;}
  7340. case 722:
  7341. #line 3757 "parse.y"
  7342. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7343.     break;}
  7344. case 723:
  7345. #line 3759 "parse.y"
  7346. { yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
  7347.     break;}
  7348. case 724:
  7349. #line 3761 "parse.y"
  7350. { yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
  7351.     break;}
  7352. case 725:
  7353. #line 3763 "parse.y"
  7354. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7355.     break;}
  7356. case 726:
  7357. #line 3765 "parse.y"
  7358. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7359.     break;}
  7360. case 727:
  7361. #line 3767 "parse.y"
  7362. { yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
  7363.     break;}
  7364. case 728:
  7365. #line 3769 "parse.y"
  7366. { yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
  7367.     break;}
  7368. case 729:
  7369. #line 3771 "parse.y"
  7370. { yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
  7371.     break;}
  7372. case 730:
  7373. #line 3773 "parse.y"
  7374. { yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
  7375.     break;}
  7376. case 731:
  7377. #line 3775 "parse.y"
  7378. { yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
  7379.     break;}
  7380. case 732:
  7381. #line 3777 "parse.y"
  7382. { yyval.ttype = ansi_opname[COND_EXPR]; ;
  7383.     break;}
  7384. case 733:
  7385. #line 3779 "parse.y"
  7386. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7387.     break;}
  7388. case 734:
  7389. #line 3781 "parse.y"
  7390. { yyval.ttype = ansi_opname[COMPONENT_REF]; ;
  7391.     break;}
  7392. case 735:
  7393. #line 3783 "parse.y"
  7394. { yyval.ttype = ansi_opname[MEMBER_REF]; ;
  7395.     break;}
  7396. case 736:
  7397. #line 3785 "parse.y"
  7398. { yyval.ttype = ansi_opname[CALL_EXPR]; ;
  7399.     break;}
  7400. case 737:
  7401. #line 3787 "parse.y"
  7402. { yyval.ttype = ansi_opname[ARRAY_REF]; ;
  7403.     break;}
  7404. case 738:
  7405. #line 3789 "parse.y"
  7406. { yyval.ttype = ansi_opname[NEW_EXPR]; ;
  7407.     break;}
  7408. case 739:
  7409. #line 3791 "parse.y"
  7410. { yyval.ttype = ansi_opname[DELETE_EXPR]; ;
  7411.     break;}
  7412. case 740:
  7413. #line 3793 "parse.y"
  7414. { yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
  7415.     break;}
  7416. case 741:
  7417. #line 3795 "parse.y"
  7418. { yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
  7419.     break;}
  7420. case 742:
  7421. #line 3798 "parse.y"
  7422. { yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7423.     break;}
  7424. case 743:
  7425. #line 3800 "parse.y"
  7426. { yyval.ttype = ansi_opname[ERROR_MARK]; ;
  7427.     break;}
  7428. }
  7429.    /* the action file gets copied in in place of this dollarsign */
  7430. #line 465 "bison.simple"
  7431.  
  7432.   yyvsp -= yylen;
  7433.   yyssp -= yylen;
  7434. #ifdef YYLSP_NEEDED
  7435.   yylsp -= yylen;
  7436. #endif
  7437.  
  7438. #if YYDEBUG != 0
  7439.   if (yydebug)
  7440.     {
  7441.       short *ssp1 = yyss - 1;
  7442.       fprintf (stderr, "state stack now");
  7443.       while (ssp1 != yyssp)
  7444.     fprintf (stderr, " %d", *++ssp1);
  7445.       fprintf (stderr, "\n");
  7446.     }
  7447. #endif
  7448.  
  7449.   *++yyvsp = yyval;
  7450.  
  7451. #ifdef YYLSP_NEEDED
  7452.   yylsp++;
  7453.   if (yylen == 0)
  7454.     {
  7455.       yylsp->first_line = yylloc.first_line;
  7456.       yylsp->first_column = yylloc.first_column;
  7457.       yylsp->last_line = (yylsp-1)->last_line;
  7458.       yylsp->last_column = (yylsp-1)->last_column;
  7459.       yylsp->text = 0;
  7460.     }
  7461.   else
  7462.     {
  7463.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  7464.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  7465.     }
  7466. #endif
  7467.  
  7468.   /* Now "shift" the result of the reduction.
  7469.      Determine what state that goes to,
  7470.      based on the state we popped back to
  7471.      and the rule number reduced by.  */
  7472.  
  7473.   yyn = yyr1[yyn];
  7474.  
  7475.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  7476.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  7477.     yystate = yytable[yystate];
  7478.   else
  7479.     yystate = yydefgoto[yyn - YYNTBASE];
  7480.  
  7481.   goto yynewstate;
  7482.  
  7483. yyerrlab:   /* here on detecting error */
  7484.  
  7485.   if (! yyerrstatus)
  7486.     /* If not already recovering from an error, report this error.  */
  7487.     {
  7488.       ++yynerrs;
  7489.  
  7490. #ifdef YYERROR_VERBOSE
  7491.       yyn = yypact[yystate];
  7492.  
  7493.       if (yyn > YYFLAG && yyn < YYLAST)
  7494.     {
  7495.       int size = 0;
  7496.       char *msg;
  7497.       int x, count;
  7498.  
  7499.       count = 0;
  7500.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  7501.       for (x = (yyn < 0 ? -yyn : 0);
  7502.            x < (sizeof(yytname) / sizeof(char *)); x++)
  7503.         if (yycheck[x + yyn] == x)
  7504.           size += strlen(yytname[x]) + 15, count++;
  7505.       msg = (char *) malloc(size + 15);
  7506.       if (msg != 0)
  7507.         {
  7508.           strcpy(msg, "parse error");
  7509.  
  7510.           if (count < 5)
  7511.         {
  7512.           count = 0;
  7513.           for (x = (yyn < 0 ? -yyn : 0);
  7514.                x < (sizeof(yytname) / sizeof(char *)); x++)
  7515.             if (yycheck[x + yyn] == x)
  7516.               {
  7517.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  7518.             strcat(msg, yytname[x]);
  7519.             strcat(msg, "'");
  7520.             count++;
  7521.               }
  7522.         }
  7523.           yyerror(msg);
  7524.           free(msg);
  7525.         }
  7526.       else
  7527.         yyerror ("parse error; also virtual memory exceeded");
  7528.     }
  7529.       else
  7530. #endif /* YYERROR_VERBOSE */
  7531.     yyerror("parse error");
  7532.     }
  7533.  
  7534.   goto yyerrlab1;
  7535. yyerrlab1:   /* here on error raised explicitly by an action */
  7536.  
  7537.   if (yyerrstatus == 3)
  7538.     {
  7539.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  7540.  
  7541.       /* return failure if at end of input */
  7542.       if (yychar == YYEOF)
  7543.     YYABORT;
  7544.  
  7545. #if YYDEBUG != 0
  7546.       if (yydebug)
  7547.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  7548. #endif
  7549.  
  7550.       yychar = YYEMPTY;
  7551.     }
  7552.  
  7553.   /* Else will try to reuse lookahead token
  7554.      after shifting the error token.  */
  7555.  
  7556.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  7557.  
  7558.   goto yyerrhandle;
  7559.  
  7560. yyerrdefault:  /* current state does not do anything special for the error token. */
  7561.  
  7562. #if 0
  7563.   /* This is wrong; only states that explicitly want error tokens
  7564.      should shift them.  */
  7565.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  7566.   if (yyn) goto yydefault;
  7567. #endif
  7568.  
  7569. yyerrpop:   /* pop the current state because it cannot handle the error token */
  7570.  
  7571.   if (yyssp == yyss) YYABORT;
  7572.   yyvsp--;
  7573.   yystate = *--yyssp;
  7574. #ifdef YYLSP_NEEDED
  7575.   yylsp--;
  7576. #endif
  7577.  
  7578. #if YYDEBUG != 0
  7579.   if (yydebug)
  7580.     {
  7581.       short *ssp1 = yyss - 1;
  7582.       fprintf (stderr, "Error: state stack now");
  7583.       while (ssp1 != yyssp)
  7584.     fprintf (stderr, " %d", *++ssp1);
  7585.       fprintf (stderr, "\n");
  7586.     }
  7587. #endif
  7588.  
  7589. yyerrhandle:
  7590.  
  7591.   yyn = yypact[yystate];
  7592.   if (yyn == YYFLAG)
  7593.     goto yyerrdefault;
  7594.  
  7595.   yyn += YYTERROR;
  7596.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  7597.     goto yyerrdefault;
  7598.  
  7599.   yyn = yytable[yyn];
  7600.   if (yyn < 0)
  7601.     {
  7602.       if (yyn == YYFLAG)
  7603.     goto yyerrpop;
  7604.       yyn = -yyn;
  7605.       goto yyreduce;
  7606.     }
  7607.   else if (yyn == 0)
  7608.     goto yyerrpop;
  7609.  
  7610.   if (yyn == YYFINAL)
  7611.     YYACCEPT;
  7612.  
  7613. #if YYDEBUG != 0
  7614.   if (yydebug)
  7615.     fprintf(stderr, "Shifting error token, ");
  7616. #endif
  7617.  
  7618.   *++yyvsp = yylval;
  7619. #ifdef YYLSP_NEEDED
  7620.   *++yylsp = yylloc;
  7621. #endif
  7622.  
  7623.   yystate = yyn;
  7624.   goto yynewstate;
  7625. }
  7626. #line 3803 "parse.y"
  7627.  
  7628.  
  7629. #ifdef SPEW_DEBUG
  7630. const char *
  7631. debug_yytranslate (value)
  7632.     int value;
  7633. {
  7634.   return yytname[YYTRANSLATE (value)];
  7635. }
  7636.  
  7637. #endif
  7638.